This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
notes:css_cheat_sheet [2026/09/13 09:33] 45.187.7.196 old revision restored (2026/08/01 19:21) |
notes:css_cheat_sheet [2026/09/16 07:25] (current) 97.107.104.122 old revision restored (2026/08/31 07:49) |
||
|---|---|---|---|
| Line 54: | Line 54: | ||
| * Text properties examples <code html> | * Text properties examples <code html> | ||
| color: # | color: # | ||
| - | text-align: | + | text-align: center/ |
| letter-spacing: | letter-spacing: | ||
| white-space: | white-space: | ||
| Line 67: | Line 67: | ||
| font: italic small-caps 900 12px arial | font: italic small-caps 900 12px arial | ||
| font: caption/ | font: caption/ | ||
| - | |||
| ==== CSS Border/List Properties ==== | ==== CSS Border/List Properties ==== | ||
| * Border properties examples (btlr=bottom/ | * Border properties examples (btlr=bottom/ | ||
| Line 98: | Line 97: | ||
| * Position properties <code html> | * Position properties <code html> | ||
| - | display: inline/ | + | display: inline/ |
| - | float: btlr ; | + | float: btlr</ |
| - | position: relative(to normal)/ | + | |
| - | /fixed(rel to window, doesn' | + | |
| - | bottom/ | + | |
| - | vertical-align: | + | |
| - | + | ||
| - | * Visibility properties <code html> | + | |
| - | visibility: | + | |
| - | clear: | + | |
| - | clip: rect(10px, 5px, 10px, 5px) | + | |
| - | overflow: | + | |
| - | z-index: 1 (0 is normal) </ | + | |
| - | + | ||
| - | ==== Advanced CSS ==== | + | |
| - | * Pseudo classes can restrict the selector. a:hover and a:active may have to come after a:link and a:visited. <code html> | + | |
| - | selector.class: | + | |
| - | a:link {color: # | + | |
| - | a:visited {color: # | + | |
| - | a:hover {color: blue} (mouse-over element) | + | |
| - | a:active {color: #0000FF} (selected element) | + | |
| - | a:focus {color: #0000FF} (focused element - not in IE) | + | |
| - | p: | + | |
| - | p > em: | + | |
| - | </ | + | |