answersLogoWhite

0

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.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What HTML elements can be used to format several table columns with a single declaration?

You could wrap the contents of table into a div. Applying actions on that div will do the work.


Why use div in HTML?

Its typically used for a tabless design. Replaces <table> tag.


Div class tags for HTML?

<div>hjghj<div> is a layer


How do you hide the ad on the top of your MySpace page but keep the navigation bar AND the search bar I know that I'm in risk to get my account deleted but idrc?

<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>


What is the code to hide your music player?

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>


What is the code to hide your profile playlist?

<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>


Name three TML tags?

HTML Tags: Body Header Bold Underline Table DIV META SCRIPT


What does div mean?

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


How do you Hide music player on MySpace?

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>


How do you post in blogger using HTML?

<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">


Is the 'div' tag part of HTML or XHTML?

The "div" tag is part of both languages.


In HTML how do you put the text boxes next to each other?

<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>