CSS: Difference between revisions

From Bitpost wiki
(Created page with " →‎class="first second": .first.second {} →‎class="first" OR class="second": .first, .second {} /* class="first second", or class="second", or class="third secon...")
 
(No difference)

Latest revision as of 17:20, 24 June 2022

/* class="first second" */
.first.second {}

/* class="first" OR class="second" */
.first, .second {}

/* class="first second", or class="second", or class="third second", or class="second third" */
.second {}

/* apply to any .child at any depth under .parent */
.parent .child {}

/* apply to .child if it is DIRECTLY under .parent */
.parent > .child {}