Tisch
US [ˈteɪl]
n
dritte Person Singular von Tabelle: Tabellen Plural: Tabellen Partizip Präsens: tabling Vergangenheitsform: tabled英[ˈleɪaʊt] 美[ˈleˌaʊt]
n. Layout, Anordnung, Design; Layoutplan, Pläne
Plural: Layouts
Funktion: Wird zum Anzeigen von Algorithmusregeln für Tabellenzellen, Zeilen und Spalten verwendet. Syntax: Object.style.tableLayout=automatic|fixed Klicken Sie auf die Schaltfläche „Instanz ausführen“, um die Online-Instanz anzuzeigenJavascript-TableLayout-Eigenschaft Syntax
Javascript-TableLayout-Eigenschaft Beispiel
<html>
<head>
<script type="text/javascript">
function setFixedTableLayout()
{
document.getElementById('myTable').style.tableLayout="fixed";
}
</script>
</head>
<body>
<table id="myTable" border="1" width="100%">
<col width="20%"><col width="40%"><col width="40%">
<tr>
<td>1000000000000000000000000000</td>
<td>10000000</td>
<td>100</td>
</tr>
</table>
<input type="button" onclick="setFixedTableLayout()"
value="Set fixed table layout">
</body>
</html>
Instanz ausführen »