View Single Post
Old 04-21-2006, 09:24 AM   #5 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 733
DJMaze is on a distinguished road
You must use 'em' and percentual placements.

use em for correct sizing based on the user prefered text size.
Code:
td {
    height: 1em;
}
precentual placement
Code:
div {
  left: 40%;
  width: 20%;
}
or
Code:
div {
  float: left;
  margin-left: 20%;
}
example: http://dragonflycms.com/
DJMaze is offline   Reply With Quote