Site Tools


notes:css_cheat_sheet

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
notes:css_cheat_sheet [2026/06/04 20:48]
47.79.51.216 old revision restored (2026/05/30 07:06)
notes:css_cheat_sheet [2026/06/07 19:31] (current)
43.156.201.18 old revision restored (2026/05/29 11:56)
Line 70: Line 70:
 ==== CSS Border/List Properties ==== ==== CSS Border/List Properties ====
   * Border properties examples (btlr=bottom/top/left/right. An outline occurs outside of the border. <code html>   * Border properties examples (btlr=bottom/top/left/right. An outline occurs outside of the border. <code html>
-border-style: medium/solid/double/groove/dotted/dashed/inset/outset;+border-style: medium/solid/double/groove/dotted/ 
 +  dashed/inset/outset;
 border-btlr: width style color ; border-btlr-style border-btlr: width style color ; border-btlr-style
 border-width:5px ; border-btlr-width: thick border-width:5px ; border-btlr-width: thick
Line 123: Line 124:
 p > em:first-child { } ; p:first-child em { } p > em:first-child { } ; p:first-child em { }
 </code> </code>
 +  * Pseudo elements are dynamic elements <code html>
 +p:first-letter {} ; p:first-line {} ;
 +h1:before {} ; h1:after {} ;</code>
 +  * Misc Properties <code html>
 +opacity:0.4; (for firefox)
 +filter:alpha(opacity=40) (for IE)
 +onmouseover="this.style.opacity=1;
 +  this.filters.alpha.opacity=100"
 +onmouseout="this.style.opacity=0.4;
 +  this.filters.alpha.opacity=40"
 +
 +cursor:deflt/cursor/pointer/move/wait/help/text/crosshair</code>
notes/css_cheat_sheet.1780631325.txt.gz · Last modified: 2026/06/04 20:48 by 47.79.51.216