CSS design: The basics
Share & bookmark this article
What is CSS design & why is it important?
CSS design represents a new, much more powerful way to lay out websites. Traditionally, cumbersome tables have been used to present web pages. In the future this practice will gradually fade out to be replaced by CSS design. To witness its true power have a look at the CSS Zen Garden
Using CSS design allows your pages to download more quickly, makes your website much easier to manage, and has numerous web usability, accessibility and search engine optimisation benefits. Basically, CSS design is a really good thing.
If you're completely new to CSS then you can find an excellent beginner's tutorial at Webmonkey.
Positioning with CSS
Advert: Training courses
Come on one of our training courses and become a web guru! Our 15 courses are run across 5 training streams:
- Usability & accessibility courses
- Website optimisation courses
- Online copywriting courses
- Web development courses
- Online marketing courses
Training courses are held every 2 weeks in London and are fantastic - small class sizes, highly interactive and taught by experts.
There are two main types of CSS positioning: relative and absolute. Absolute CSS positioning places an object in a specified part of the screen. Relative CSS positioning moves an object in relation to where it's supposed to be.
So, to position something 100px from the top and 200px from the left of the screen, you would use this CSS command:
{
position: absolute;
top: 100px;
left: 200px
}
To move an object 2em down and 50px to the left, use this CSS command:
{
position: relative;
top: 2em;
left: 50px
}
You can also use the margin attribute to move objects relatively:
{
margin-top: 2em;
margin-left: 50px
}
Page items not enclosed within the position:relative CSS command will not be affected in any way by it. Page elements featured after the margin CSS command, on the other hand, will have their position adjusted as a result of it.
Making navigation items with CSS
Long gone are the days where you have to use gif images to make fancy navigation items. CSS has opened up a whole new realm of opportunities.
The most important CSS tags here are probably the background and border tags. You could make a basic button with these CSS commands:
a
{
color: #fff;
background: #f90;
text-decoration: none;
padding: 0.2em;
border: 4px solid;
border-color: #99f #008 #008 #99f
}
a:hover
{
background: #fa1;
border-color: #008 #99f #99f #008
}
This would create a link like this:
Go on, put your mouse over it!
Please note, this article barely scratches the surface of CSS design. To find out more please check out the rest of our CSS resources area.
This article was written by Trenton Moss, director and founder of the user experience consultancy, Webcredible. They run a range of Internet marketing training courses, including 2 very good courses on SEO training and Google AdWords & PPC training.
What next?
- Read more web development articles on this website
- Get a highly accessible CSS website through our accessible CSS web design expertise
- Get our accessible and usable CMS so your site offers outstanding accessibility
- Attend our interactive intermediate CSS training, advanced CSS training and jQuery training courses
