您好,欢迎访问一九零五行业门户网

css怎样设置table的宽度为自适应宽度

在css中,可以利用width属性设置table元素的宽度为自适应宽度,该属性用于设置元素的宽度,当属性的值为“数值%”时,定义基于包含父元素宽度的百分比宽度,也即宽度随父元素宽度自适应,语法为“table{width:数值%;}”。
本教程操作环境:windows10系统、css3&&html5版、dell g3电脑。
css怎样设置table的宽度为自适应宽度
在css中,利用width属性,该属性用于设置元素的宽度,将属性的值设置为百分比样式可以将元素的宽度设置为自适应宽度。
示例如下:
<!doctype html><html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>document</title> <style> table{ width:50%; } </style></head><body><table border="1"> <tr> <th>month</th> <th>savings</th> </tr> <tr> <td>january</td> <td>$100</td> </tr></table></body></html>
输出结果:
(学习视频分享:css视频教程)
以上就是css怎样设置table的宽度为自适应宽度的详细内容。
其它类似信息

推荐信息