Dart API Referencedart:htmlTableCellElement

TableCellElement Interface

The HTML Table Cell Element (<td>) defines a cell that content data.

Extends

Element

Constructors

Code new TableCellElement() #

TableCellElement();

Fields

Code String abbr #

This attribute contains a short abbreviated description of the content of the cell. Some user-agents, such as speech readers, may present this description before the content itself.
Note: Do not use this attribute as it is obsolete in the latest standard: instead either consider starting the cell content by an independent abbreviated content itself or use the abbreviated content as the cell content and use the long content as the description of the cell by putting it in the title attribute.
String abbr;

Code String align #

This enumerated attribute specifies how horizontal alignment of each cell content will be handled. Possible values are:
  • left, aligning the content to the left of the cell
  • center, centering the content in the cell
  • right, aligning the content to the right of the cell
  • justify, inserting spaces into the textual content so that the content is justified in the cell
  • char, aligning the textual content on a special character with a minimal offset, defined by the char and charoff attributes Unimplemented (see bug 2212 ) .

If this attribute is not set,  the left value is assumed.

Note: Do not use this attribute as it is obsolete (not supported) in the latest standard.
  • To achieve the same effect as the left, center, right or justify values, use the CSS text-align property on it.
  • To achieve the same effect as the char value, in CSS3, you can use the value of the char as the value of the text-align property Unimplemented .
String align;

Code String axis #

This attribute contains a list of space-separated strings. Each string is the ID of a group of cells that this header applies to.
Note: Do not use this attribute as it is obsolete in the latest standard: instead use the scope attribute.
String axis;

Code String bgColor #

String bgColor;

Code final int cellIndex #

final int cellIndex;

Code String ch #

String ch;

Code String chOff #

String chOff;

Code int colSpan #

int colSpan;

Code String headers #

This attributes a list of space-separated strings, each corresponding to the id attribute of the <th> elements that applies to this element.
String headers;

Code String height #

String height;

Code bool noWrap #

bool noWrap;

Code int rowSpan #

int rowSpan;

Code String scope #

String scope;

Code String vAlign #

String vAlign;

Code String width #

String width;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.