Resources

 

Here are more articles:  

Adding a Touch of Style:  http://www.w3.org/MarkUp/Guide/Style.html 

HTML with Style:  http://www.webreference.com/html/tutorial5/

WebsiteTips.com: http://www.websitetips.com/html/index2.html#css

Style Sheets Tutorial:  

http://hotwired.lycos.com/webmonkey/authoring/stylesheets/tutorials/tutorial1.html 

CSS and DHML: http://htmlgoodies.earthweb.com/beyond/css.html 

CSS bugs:  http://css.nu/pointers/bugs.html 

CSS2: http://hotwired.lycos.com/webmonkey/98/15/index4a_page2.html?tw=authoring 

CSS Pointers for Practical Use;  http://www.css.nu/ 
(has some great links, including an example page and some sample CSS sheets)

What works in what browser:  http://www.webreview.com/style/css2/charts/selectors.shtml 

Http://www.fortnet.com/FortNet/HTML/Presentation/style/syntax.html 

Http://www.htmlhelp.com/reference/css/quick-tutorial.html 

Click here for CSS for FrontPage users.  

Click here  for a browser detection script to redirect Netscape 4 users.

http://www.w3schools.com/css/css_books.asp 

Everything you ever wanted to know about Style

http://www.westciv.com/style_master/academy/css_tutorial/index.html 

CSS-P: How to build a web site without tables

http://www.mako4css.com/Tutorial.htm 

Positioning with CSS 2

Toss out your Tables! CSS is the scene!

http://wdvl.internet.com/Authoring/Style/Sheets/Positioning/Toss/index.html 

A great series of Editorials

http://www.wpdfd.com/editorial/wpd0402.htm#feature

 


Questions?

 

How is the logo done?

<STYLE>

BODY { background: url(images/phoebe1.jpg) white no-repeat bottom right fixed }

</STYLE>

</head>

How is the larger link done?

I bet you can guess - it is a function of a: hover

a:hover {color: blue; text-decoration : none; font-size : 18pt; font-weight :bold; line-height: 21pt }

How about the scrollbar color?

<style type="text/css">
BODY {
scrollbar-face-color: #7AC5CD;
scrollbar-3dlight-color: #EFE6C9;
scrollbar-darkshadow-color: #B4EEB4;
scrollbar-track-color:#78C4D0;
scrollbar-arrow-color: #EFE6C9;}

</style>
</head>

OR

<style type="text/css">
body {
scrollbar-face-color: #AC4F00;
scrollbar-shadow-color: #670000;
scrollbar-highlight-color: #ECBA87;
scrollbar-3dlight-color: #ECBA87;
scrollbar-darkshadow-color: #670000;
scrollbar-track-color: #9D3600;
scrollbar-arrow-color: #228B22; }

</style>

For more information, check the Microsoft site.

How do I get links to show a background color when the cursor is over them?

A:link:hover, A:visited: hover{background: yellow}

How about a dropcap?  (Hint:  it's a class)

<style>
.dropcapparagraph:first-letter
{
font-size:300%;
font-style:italic;
font-weight:bold;
float:left;
color:black;
}
</style> 

Now, use the class .dropcapparagraph.  (<p class="dropcapparagraph">)  For example, see the first page.

What is a Collapsible Border?

Click here for the answer.

Netscape isn't displaying my tables correctly. What am I doing wrong?

Netscape does not apply the BODY style to tables. To work around this, add TD to your BODY selector, like so:

BODY, TD { font-family: sans-serif; }
 

Books

Click to order from Amazon.com HomeSite 4.5 for Dummies
by Nick Bradbury, David Crowder and Rhonda Crowder

Co-authored by Nick Bradbury, creator of both TopStyle and the original HomeSite, this is an excellent introductory guide to HomeSite 4.5. Many of the new features in version 4.5 are covered in detail, including TopStyle Lite's integration with HomeSite.

Click here to order from Amazon.com.
Click to order from Amazon.com Cascading Style Sheets : The Definitive Guide
by Eric A. Meyer

Very thorough coverage of CSS both in theory and in practice. Written by Eric Meyer, the author of WebReview's Style Guilde, this is the only CSS reference which includes information about CSS-related browser incompatibilities, making it a must-have for all Web authors.

Click here to order from Amazon.com.
Click to order from Amazon.com Cascading Style Sheets: Designing for the Web, 2nd Edition
by Hakon Wium Lie, Bert Bos

Written by two of the architects of CSS, this book contains tutorials on CSS, HTML and XML with simple examples as well as detailed information on both CSS 1 and 2. It's the perfect introduction to CSS for beginners, and the definitive guide for professional Web designers. This book was constantly open while developing TopStyle!

Click here to order from Amazon.com.

Copyright ©PhoebeMoon Web Design Solutions