Learn to Use HTML Tables and DIV tags Quickly - The Use of the DIV tag
(Page 3 of 4 )
Like tables, <DIV> tags allow for compositional treatment to the web page. There is a line break between <DIV> tags that allows for more spacing and composition, though that's okay. The idea is that you can style each <DIV> tag differently to suit your design. Style sheet coders like this idea as a mixture of styles can be introduced into the page.
It looks like this when placed:
The text is here.
Or the text is here and looks like this.
This is very basic but what is happening culminates in stylized block elements separated and therefore hosted properly. A table could be used with no borders, and simple changes to the font style. Combining DIV tags with tables, however, leads to a nice design.
The code for the above example is:
<html>
<body>
<div style="color:#00CC00;">The text is here</div>
<div style="color:#000066;">Or the text is here and looks like this</div>
</body>
</html>
That is just an illustration as the proper usage would look like this for a text section:
<div style="background-color: #00CC00; text-align:center">
<p> The text is here</p>
</div>
<div style="border:1px solid black">
<p> This is a paragraph in a div section </p>
</div>
Another example of proper usage is with alignment in text:
<div align="center">
<h3>Hi, now the text is here</h3>
<p><img src="somesillyimage.jpg">
<h4>I know that the text can be here too and for <a href="http:www.somesite.org/">hyperlinks</a></h4>
</div>
So, the <div> tag will give many advantages to designers who are using styles more and wanting to move away from just plain tables. The <div> tag complements the style properties of a style sheet.
Next: Combining the use of DIV and TABLE tags >>
More HTML Articles
More By Stephen Davies