Website Design Edmonton       Website Design Feedback       Website Design Sitemap     Contact Website Design Company
Website Designers R Us - Home
No Tables for Layout with css

Tables were never meant for layout. They are supposed to be used for displaying tabular data such as athlete records or other information that goes into a table. For layout, you must use CSS. The <div> tag is a loosely defined block-level element made so that you can use CSS on your web page.

Making Classes for the <div> Elements

The first thing you need to do is define a CSS class which your <div> elements will use. This is how to do it:

div.leftnav{

background: white;

color: black;

/* Other display information here */

/* Add Positioning information here */

}

This CSS class is rather simple and won't really do anything right now but define black text on white background. You must position the element somewhere on the page.

Simple Relative Positioning

This means that we just position an element where it is, without defining the exact location.

div.leftnav{

background: white;

color: black;

/* Other display information here */

width: 15%;

}

What did we do? We said that the left navigation would be on the left wherever it is put on the page. This isn't bad, but for more flexibility, you might need absolute positioning. Also, it is important to note that what I just showed you was not real positioning (relative or otherwise.) All that was defined was the width so it will make an element that is 15% wide wherever is it on the page. It won't really position it anywhere. For real positioning, read on.

Return to Listing

Website Designers R Us is a professional Internet strategy and Web design company based in Toronto, Canada. We specialize in best-in-class website design, online marketing, Flash multimedia, corporate identity and print graphics. Website Designers R Us features an integrated team of web consultants, creative designers, writers, programmers and marketing professionals that know how to get online results
 Home          ::             About Us          ::             Support            ::             Services            ::             Link Partners          ::             Contact

Copyright © 2006-2011 Website Designers R Us, a DOT Specialist Company. All rights reserved.