answersLogoWhite

0

What does the tag TR stand for?

Updated: 12/20/2022
User Avatar

Mcsidney123

Lvl 1
13y ago

Best Answer

Table Row

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the tag TR stand for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does tr stand for in HTML?

The <tr> tag designates a table row. For example, in the code below, a table with one row and two cells on that row is created. <table> <TR> <TD>lorem</TD> <TD>ipsum</TD> </TR> </TABLE>


What does TR stand for in engineering terminology?

The following Web Address provides a variety of things that the letters "TR" can stand for: http://en.wikipedia.org/wiki/TR The following Web Address provides a variety of things that the letters "TR" can stand for: http://en.wikipedia.org/wiki/TR


Which attributes is used with TR tag?

The TR (Table Row) tag is part of the <table> tag family. It has several attributes. You format the attributes like this: <tr attribute="whatever">. Here are the attributes for the <tr> tag for HTML 4 and earlier: * align (right, left, center, justify, char) * bgcolor (#xxxxxx, colorname) * char (character) * charoff (number) * valign (top, middle, bottom, baseline) NOTE: These attributes are not supported in HTML 5.


What does tr mean?

TR could be an HTML tag for a table, the initials of Teddy Roosevelt or an editing mark for translation.a desinated place


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


Which HTML tag would be apply the bgcolour attribute to change the background color of single table row?

The tr tag.


What does tr stand for in basketball?

Total Rebounds


What does country initials TR stand for?

Turkey


What does tr in nutrition stand for?

trace


What does P tag stand for?

Tag P stands for paragraph tag.


What are the legal ramifications of the initials 'TR' after your name?

I don't know the context of this, but TR could stand for Trustee.


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>