answersLogoWhite

0

It bolds and centres the text in a cell.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What tag set marks the content of a header cell?

The <th> tag, which stands for table header.


What tag creates a table cell?

You will wrap a table cell contents with the <td> tag, unless it is a header, then you will use <th>.


Can colspan be used within tr tag in html?

No, colspan can only be used on <td> and <th> elements.


What is the functin of the tr in HTML?

The <tr> tag in HTML functions to define a table row. It's part of a <table> tag's body, and is used to contain either table headers <th> or table cells <td>.


What does the HTML tag TD create?

The <td></td> tag creates a table data cell. This is one of the boxes within an HTML table, and it intended to hold data (as opposed to a <th> which represents a table heading.) Table cells are always contained within a table row <tr> tag.


What sort of gears are in a 1994 Ford Bronco?

Check th rear differential, usually theres a metal tag bolted to the dif-cover.Look at the tag for numbers like 3 then a space 55 or other numbers. 3 55


What are the tags for a definition list for HTML?

There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.


What is spanning used in tables of HTML?

Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020Spanning allows you to put one cell to span across two or more columns or rows. There are two span types and you can use the colspan attribute for spanning across columns or the rowspan attribute for spanning across rows. The are normally used in the td tag or the th tag. Test these two examples.Data1020Data1020


What is the difference between DIV and TABLE?

The TABLE tag is used to store tabular content and as such has child tags such as TR (for table rows), TD (for table cells), TH (for table headers), etc. The DIV tag is used simply to encompass a block for styling or structural reasons, it is similar to the SPAN tag but it a 'block' element as oppose to an 'inline' element (which SPAN is).


How do you add colums to HTML?

You create a table row using the TR tag... <table> <!-- ROW 1 --> <tr> <th>X</th> <th>Y</th> </tr> <!--ROW 2--> <tr> <td>Tom</td> <td>Sue</td> </tr> </table>


What kind of tag games are there?

Freeze tag, line tag, cartoon tag, mars tag and normal tag.


What table tag sets off the table header?

<th> can be used to indicate a table header cell. <thead> is used to define a header area which could consist of one or more rows.