css表格实例 设置表格的布局(css中设置表格所有行的样式)

css表格实例 设置表格的布局(css中设置表格所有行的样式)

首页维修大全综合更新时间:2023-12-26 10:37:04

css表格实例 设置表格的布局

这里需要用到工具,代码编辑器editplus,还有浏览器

代码编辑如下:

<html>

<head>

<style type="text/css">

table.one

{

table-layout: automatic

}

table.two

{

table-layout: fixed

}

</style>

</head>

<body>

<table border="1" width="100%">

<tr>

<td width="20%">1000000000000000000000000000</td>

<td width="40%">10000000</td>

<td width="40%">100</td>

</tr>

</table>

<br />

<table border="1" width="100%">

<tr>

<td width="20%">1000000000000000000000000000</td>

<td width="40%">10000000</td>

<td width="40%">100</td>

</tr>

</table>

</body>

</html>

大家还看了
也许喜欢
更多栏目

© 2021 3dmxku.com,All Rights Reserved.