Filter
Exclude
Time range
-
Near
18 Sep 2025
Replying to @Mininoogy
Css in c is something I've never seen before and it looks interesting. Most of the stuff I write in C is windows internals related. My only gripe is that CSSRule *rule = rules[i] I would write as CSSRule* pRule = rules[i] But that's because I'm used to windows programming.
2
28
23 Oct 2024
Replying to @KevinJPowell
The `@starting-style` should go last, after the `opacity: 1` declarations. web.dev/blog/css-nesting-css… is the article you are looking for here. Compare the output of the CSSRule Debugger in a browser without CSSNestedDeclarations support, and one with CSSNestedDeclarations support.

3
6
383
7 Oct 2024
I’m having fun building this `CSSRule` debugger to show you what goes on behind the scenes. codepen.io/bramus/full/JjgXW… Especially handy with `CSSNestedDeclarations` coming to the CSSOM in Chrome 130, Firefox 132, and (hopefully) Safari 18.1.
3
29
2,382
12 Mar 2024
12 Mar 2024
Hi PM @narendramodi @PMOIndia what's going on with @randomsena Is he Arrested ?? 👈
2
4
265
19 Jan 2024
Replying to @kilianvalkhof
Care to open a CSSWG issue for `CSSRule.matches(element)` / `element.matchCSSRule(CSSRule)`? Or shall I open one for you?
1
2
126
Replying to @bramus
CSSRule.matches(element) or element.matchCSSRule(CSSRule) since with nesting, layer, container and scope, element.matches(selector) and window.matchMedia are wholly insufficient. We’re getting element.matchContainer but that’s not enough. CSSOM functions to get specific values from different types of combinatory properties (like box-shadow or font) would be greatly appreciated, eg CSSBoxShadow.get(‘color’) or whatever.
1
2
114
タイプセレクタ: 要素名を使うセレクタ。 同じスタイルを適用させたい場合セレクタをコンマで区切って並べることで1つのグループにまとめて書くことが出来る。 h1, h2, p { font-family: sans-seif } 🐰タイプセレクタとclassセレクタではclassセレクタが優先される。 #cssrule #プログラミング初心者
シンプルセレクターとは要素をとってくる要素型セレクタ(タイプセレクタ)、全称セレクタ(ユニバーサルセレクタ)、 属性セレクタ、クラスセレクタ、IDセレクタ、擬似クラスの総称をいいます Simple selectors select elements based on name, id, class. #プログラミング初心者 #独学
8
表示崩れを防ぐ ボックス間の上下方向の隙間について margin-top / margin-bottomどちらを使うかを決めておいたほうがいい 隣り合うボックスの上下margineは相殺されてどちらか一方大きい方の数値が有効になる #プログラミング独学 #今日の積み上げ #プログラミング初心者と繋がりたい #cssrule
12
Floatの高さがなくなる問題👀難しいよ〜〜🦁 .clearfix::after { content: ""; display: block; clear: both; } このサイトを参照して、わかった😊 qiita.com/mariofujisaki/item… #Cssrule #プログラミング初心者 #駆け出しエンジニアと繋がりたい #プログラミング独学 #今日の積み上げ

10
clear: both; をすると設定されたプロパティのMargin topが効かない状態になるので、感覚をあけたい場合は、段組コンテンツ側にmargin-buttomをつけて対応する footerAreaをご覧ください☺️ #cssrule #プログラミング初心者 #駆け出しエンジニアと繋がりたい #プログラミング独学 #駆け出しエンジニア
19
dtに以下の設定をしてdtとddを横並びにする dt{ clear:left; float:left; } するとddが変な位置で折り返してしまう。 floatした要素は原則としてwidthを明示しておくことが推奨されます。 #cssrule #プログラミング初心者 #駆け出しエンジニアと繋がりたい #プログラミング勉強中
15
詳細度とはどれだけ細かくセレクタが指定されているかで細かいほど優先される。詳細度が全く同じ場合には後から記述された方が優先されます。 タグ<Class<id の順に優先順位が上がる #CSSrule #プログラミング初心者 #駆け出しエンジニアと繋がりたい #プログラミング独学 #駆け出しエンジニア
1
21
Replying to @anatudor @Mamboleoo
Oh I see. For a while Chrome supported a window.getMatchedCSSRules function. Searching on it may reveal more results. You can parse all styles using “cssrule” or “cssrules” or something. Again not what you’re after but a good search term to try.
1
2
19 Jul 2020
Envelope Animation for #codethisdesign challenge - built using @greensock and its CSSRule Plugin. codepen.io/codewithjalaj/ful… #CSS #100DaysOfCode
Hi folks! Please find the design for #codethisdesign 5⃣ It's a minimal envelope animation. Retweet with your pens 🥳 Hint: clip-path Design @ dribbble.com/shots/13118573-… #uidesign #uxdesign #madewithadobexd #autoanimate @AdobeXD #WomenInSTEM #womenintech
3
1
12
17 Jun 2019
I recently found that even CSSRule instances inside a CSSStyleSheet are changeable so surely there's more ways to approach this 👍
1
2
Replying to @kkotowicz
@kkotowicz @0x6D6172696F can't you figure this out anyway by traversing the cssRule CCSOM?
1
1
1
8 Jan 2013
Inner Radius = Outer Radius – Border Width #cssrule
1