The table tag is used to create a table, which is a type of block-level element. The div tag is used to create a generic block element. The main difference is that tables are best-suited for tabular data, and divs are best-suited to presentation of non-tabular data.
You could wrap the contents of table into a div. Applying actions on that div will do the work.
Its typically used for a tabless design. Replaces <table> tag.
<div>hjghj<div> is a layer
<style> type=text/css>DIV{VISIBILITY: visible}DIV TABLE {VISIBILITY: hidden}DIV TABLE TD {VISIBILITY: hidden}DIV TABLE TABLE TD {VISIBILITY: visible}DIV TABLE TABLE {VISIBILITY: hidden}DIV TABLE TABLE DIV {VISIBILITY: visible}TABLE TD DIV DIV {VISIBILITY: hidden}TABLE TABLE TABLE {VISIBILITY: visible}DIV TABLE { VISIBILITY:hidden}</style></p>
Put this on your About me section! <style> embed, object {filter:alpha(opacity=0.2); opacity:0.02; -khtml-opacity:0.02;} td td td embed, td td td object, table table td.text embed, table table td.text object {filter:none; opacity:none; -khtml-opacity:none;} table table div {position:absolute; top:0px; left:-250px;} table table td.text div, table table div div, table table table div, div table table div, table div table div {position:static;} table.interestsAndDetails {margin-top:-25px;} </style>
<style> embed, object {filter:alpha(opacity=0.2); opacity:0.02; -khtml-opacity:0.02;} td td td embed, td td td object, table table td.text embed, table table td.text object {filter:none; opacity:none; -khtml-opacity:none;} table table div {position:absolute; top:0px; left:-250px;} table table td.text div, table table div div, table table table div, div table table div, table div table div {position:static;} table.interestsAndDetails {margin-top:-25px;} </style>
HTML Tags: Body Header Bold Underline Table DIV META SCRIPT
A div tag in HTML represents a division, usually with its own style, class, or alignment. For example, the HTML <div align=center>Text</center> would align the text in the center of the page
Put this in the bottom of your about me section <style> embed, object {filter:alpha(opacity=0.2); opacity:0.02; -khtml-opacity:0.02;} td td td embed, td td td object, table table td.text embed, table table td.text object {filter:none; opacity:none; -khtml-opacity:none;} table table div {position:absolute; top:0px; left:-250px;} table table td.text div, table table div div, table table table div, div table table div, table div table div {position:static;} table.interestsAndDetails {margin-top:-25px;} </style>
<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">
The "div" tag is part of both languages.
<html> <head><title></title></head> <body> <div position :absolute; top : 200px; left : 50px; border : solid;> This is first Box </div> <div position :absolute; top : 200px; left : 150px; border : solid;> This is Second Box </div> </body> </html>