HTMLTableElement.align
Deprecated
Avoid using this feature in new projects. Some table styling attributes have no effect. They are superseded by CSS. This feature may be a candidate for removal from web standards or browsers.>
La propiedad HTMLTableElement.align representa la alineación de la tabla.
Sintaxis
HTMLTableElement.align =alignment; varalignment =HTMLTableElement.align;
Parámetros
alignment-
alignmentes una cadena con uno de los siguientes valores:- left
- center
- right
Ejemplo
js
// Establecer la alineación de una tabla
var t = document.getElementById("TableA");
t.align = "center";
Especificación
- Especificación W3C DOM 2 HTML HTMLTableElement .align.