gpt4 book ai didi

html - 表类在 css/html 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 08:36:44 24 4
gpt4 key购买 nike

尝试将表格添加到网页的页脚中,并且此特定表格需要 100% 宽,黑色背景。已按如下方式对 css 和 html 进行编码,但似乎根本无法识别它。有人知道我哪里出错了吗?

table.sign {
width:100%;
background-color: rgba(0,0,0,0.6);
align:center;
border: none;
padding: none;
}
<table class="sign">
<tr>
<td>
<b>Content will go here.</b>
</td>
</tr>
</table>

最佳答案

尝试使用 text-align: center;在 td 而不是 table 上

table.sign {
width:100%;
background-color: rgba(0,0,0,0.6);
border: none;
padding: 0;
}
td {
text-align: center;
}

关于html - 表类在 css/html 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44419256/

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