docs:programming:css:css_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

docs:programming:css:css_notes [2008/08/03 00:25] – external edit 127.0.0.1docs:programming:css:css_notes [2009/06/26 00:07] (current) billh
Line 1: Line 1:
 ====== CSS (Cascading Style Sheets) ====== ====== CSS (Cascading Style Sheets) ======
 This page is for things that I commonly forget regarding CSS. This page is for things that I commonly forget regarding CSS.
 +
 +===== multiple classes =====
 +An HTML entity can have more than one class if the class names are separated by a space.  ID selectors on the other hand can only be one.
 +<code>
 +<p class="urgent warning">When handling plutonium, care must be taken to avoid the formation of a critical mass.</p>
 +</code>
 +
 +If you want to define a specific css style that only pertains to items having both class names, you can do this:
 +<code>
 +.warning.urgent{background: silver;}
 +</code>
  
 ===== adjacent sibling selector ===== ===== adjacent sibling selector =====
  • docs/programming/css/css_notes.1217744747.txt.gz
  • Last modified: 2009/06/26 00:07
  • (external edit)