Jump to content

Anybody know of good CSS tutorials?


Skipjackrick

Recommended Posts

First, get rid of and stop using align="center". It doesn't exist in the XHMTL language, and you have set your doctype to XHTML.

 

Next, set the css for your table to look like this:

 

table {
border-collapse: collapse;
margin: 0 auto;
}

 

That will center both tables for you.

 

Nice design by the way! Looks good. Simple, but very easy to read with good colors.

Here,

 

Check out http://www.tutorialized.com/ They have a huge collection of tutorials covering a vast range of topics.

 

If you're looking to learn CSS for the first time check out http://www.davesite.com/webstation/css/  It's an interactive CSS tutorial that teaches you by letting you work with the code and see the results.

 

Cheers,

-Jerry Sidower

This is the beginner to css's best resource (many of us pros still bookmark it):

 

The venerable max design "selectutorial"

 

This will teach you the most important basic rules of css in a clear, concise and palatable way. It is crucial to know this first in order to avoid massive frustration later trying to figure out why your css element isn't working.

 

And while you are there, the listomatics, listutorial and floatutorial are also must visits.

 

Bookmark it! You will come back to it often while learning.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.