gpt4 book ai didi

css - 带有内部样式表的表格宽度

转载 作者:行者123 更新时间:2023-11-28 16:42:58 26 4
gpt4 key购买 nike

我正在使用指定标准表格 宽度 的外部 CSS 文件,但我有一个表格想要缩小。我如何编写一个内部 CSS 文件来指定它?

最佳答案

您可以为该表定义这样的“内联样式”

<table style="width:200px">

或者您可以将 Style 放在 <head></head> 中标签。

例如:

<head>  
<style type="text/css">
#any_id_for_table{width:200px !important;}
</style>
</head>

<body>
<table id="any_id_for_table"> .... </table>
</body>

注意:(添加 !important 将覆盖其他地方定义的任何 CSS。)

关于css - 带有内部样式表的表格宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18524816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com