answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which attributes is used with TR tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are the attributes of a firefighter?

There can be various attributes of an element. Firefighter could be a custom tag with various attributes.


What are specifications inside a tag called?

Attributes


How do you add colums to HTML?

You create a table row using the TR tag... &lt;table&gt; &lt;!-- ROW 1 --&gt; &lt;tr&gt; &lt;th&gt;X&lt;/th&gt; &lt;th&gt;Y&lt;/th&gt; &lt;/tr&gt; &lt;!--ROW 2--&gt; &lt;tr&gt; &lt;td&gt;Tom&lt;/td&gt; &lt;td&gt;Sue&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;


How do you make HTML tables?

There are several tags used to create HTML tables. The minimum requirement are the &lt;table&gt; (start of the table), &lt;tr&gt; (row tag), and &lt;td&gt; (cell tag) tags. You use &lt;table&gt; and the beginning and &lt;/table&gt; at the end of your entire table. You use the &lt;tr&gt;&lt;td&gt;content&lt;/td&gt;&lt;td&gt;content&lt;/td&gt;&lt;/tr&gt; tags to identify the rows and cells within the rows.


What is a dialogue tag?

A dialogue tag is clause of two or more attributes speech to a particular speaker

Related questions

What is the name of the additional information placed inside a tag that controls how the tag is used?

The information contained within the opening portion of an HTML tag that controls various attributes of the tag is called the tags "attributes."Attributes follow the format attribute="value" and are added to the tag after it's opening. For instance:In this case, the image tag has two attributes, the src attribute and the alt attribute. The values of those attributes are "a.png" and "A" respectively.


Can colspan be used within tr tag in html?

No, colspan can only be used on &lt;td&gt; and &lt;th&gt; elements.


What is the functin of the tr in HTML?

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


What does the tag TR stand for?

Table Row


What are the attributes of a firefighter?

There can be various attributes of an element. Firefighter could be a custom tag with various attributes.


What are the two attributes that you should use with every img tag?

The img tag has two attributes: src and alt. If you leave either one of these attributes out of the code, you will not see the image.


What are the attributes of the BODY tag?

The body tag in HTML 5 does not support any element-specific attributes. It does however support the global attributes, and the event attributes. Please see the related links for a complete reference.


What are specifications inside a tag called?

Attributes


How do you add colums to HTML?

You create a table row using the TR tag... &lt;table&gt; &lt;!-- ROW 1 --&gt; &lt;tr&gt; &lt;th&gt;X&lt;/th&gt; &lt;th&gt;Y&lt;/th&gt; &lt;/tr&gt; &lt;!--ROW 2--&gt; &lt;tr&gt; &lt;td&gt;Tom&lt;/td&gt; &lt;td&gt;Sue&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;


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


How do you make HTML tables?

There are several tags used to create HTML tables. The minimum requirement are the &lt;table&gt; (start of the table), &lt;tr&gt; (row tag), and &lt;td&gt; (cell tag) tags. You use &lt;table&gt; and the beginning and &lt;/table&gt; at the end of your entire table. You use the &lt;tr&gt;&lt;td&gt;content&lt;/td&gt;&lt;td&gt;content&lt;/td&gt;&lt;/tr&gt; tags to identify the rows and cells within the rows.


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

The tr tag.