Pls help me, can anybody tell me about what is div and how to use in designing and can u give me any e-book for basic knowledge of designing for create a web-page. I am very thank full if anybody help me. Thanks.
Think of DIV's as a container for your content. You place the content in the container, then you apply style to the container, which affects the attributes of anything in the container. <div style="color:#ff0000;"> <div style="float:right;">hello</div><div style="float:left;">world</div> <div style="clear:both;"></div> <div style="float:right;">world</div> <div style="float:left;">hello</div> </div> Code (markup):