CSS References?

Status
Not open for further replies.

Erich

Beta member
Messages
2
Does anyone know of a good resource for CSS for beginners? I'm working on a project that requires some CSS manipulation, but I don't have any experience. Something with simple code samples would be great.

Thanks,
Erich

Visit my website:

I Hate the New Star Wars

For my ongoing rant on why the new Star Wars sucks.
 
w3schools doesn't really explain the Class id efficiently enough.

CSS is simple.

the Basic guideline is this, any tag that can carry a class id:

syntx aside:

<table class="Main_Header" width="100%">
<?php include main_header.php>

</?>

</table>

The class Main_Header in the Table tag can be defined in the css file as...


Table.Main_Header {
width: 790px ;
background-color: #FFFFFF;
border-right: 1px solid #9a9a9a;
border-left: 1px solid #9a9a9a;
border-bottom: 5px solid;
}



It would be up to you to learn the different attributes you can change to each element(tag).

good luck.
 
Status
Not open for further replies.
Back
Top Bottom