CSS Tips
Cascading Style Sheets
| Tip | Details |
| CSS Book Geoff |
For a great book on Cascading Style Sheets, you can't go past the one called "More Eric Meyer on CSS". See http://more.ericmeyeroncss.com/ |
| dota |
[*map/map_cnc2_11_mordy.txt |
| Example site Geoff |
You may like to look at the style sheet used on this web site for some working CSS examples at http://www.acacialt.com.au/style.css |
| Hidden HTML blocks using CSS Geoff |
/* Present hidden region toggle text as a bold link */ .linkstyle { margin-left: 5; FONT-SIZE: 100%; font-weight: bold; text-decoration: underline; color: blue; cursor: hand; voice-family: "\"}\""; voice-family:inherit; cursor: pointer; } ... <a class="linkstyle" onClick="javascript: toggle('hidden2')">Windows instructions...</a> <div id="hidden2" style="display: none;"> <p> To be completed soon.... </p> </div> <!-- end of hidden --> |
| [*map/map_all_ag2.txt |
Click here to add your own tips.