当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style tableLayout属性用法及代码示例


HTML DOM Style tableLayout 属性返回并修改表格单元格、行和列在 HTML 文档中的放置方式。

用法

以下是语法 -

1.返回tableLayout

object.tableLayout

2.修改tableLayout

object.tableLayout = “value”

这里的价值可以是 -

解释
initial它将此属性值设置为其默认值。
inherit它从其父元素继承此属性值。
fixed它根据列和表的宽度设置列宽。
auto它根据表格中最宽的牢不可破内容的宽度设置列宽。

让我们看一个 HTML DOM 样式 tableLayout 属性的示例 -

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      background:lightblue;
      height:100vh;
      text-align:center;
   }
   table {
      margin:2rem auto;
      width:400px;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
      margin:1rem auto;
   }
</style>
<body>
<h1>DOM Style tableLayout Property Demo</h1>
<table border="2">
<caption>Student Entry</caption>
<tr>
<th>Name</th>
<th>Roll No.</th>
</tr>
<tr>
<td>John</td>
<td>031717</td>
</tr>
<tr>
<td>Elon</td>
<td>041717</td>
</tr>
</table>
<button onclick="show()" class="btn">Set tableLayout</button>
<script>
   function show() {
      document.querySelector('table').style.tableLayout = "fixed";
   }  
</script>
</body>
</html>

输出

点击 ”Set tableLayout” 按钮来设置 tableLayoutfixed 价值 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style tableLayout Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。