Gerald Fernando schrieb:
i used table but it will not be placed in the full page even i put table
height and width = 100%
if possible please explain little bit about

div with CSS float: etc. in the page template.

div with CSS float means, that you use the float: CSS attribute to layout the div elements, like this:

<html><body>
<div style="background-color:red; float:left;width:30%">left</div>
<div style="background-color:blue; float: right;width:30%">right</div>
<div style="background-color:green">center</div>
</body></html>

You can find more information about that here:
* http://webdesign.about.com/od/advancedcss/a/aa010107.htm
* http://www.w3schools.com/css/pr_class_float.asp


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to