gpt4 book ai didi

html - 在 Internet Explorer 7 中,文本对齐 : right is not taking effect

转载 作者:太空宇宙 更新时间:2023-11-04 05:33:07 25 4
gpt4 key购买 nike

有什么办法可以让header向右对齐吗?
仅在 Internet Explorer 7 中测试。

<html>
<style type="text/css">
th {
text-align: left;
}
</style>
<body>
<table width="100%" border="1">
<thead>
<tr>
<th style="width: 250px;">Tag
<th style="width: 100px; text-align: right;">Duration
</tr>
</thead>
<tbody>
<tr>
<td > one
<td> two
</tr>
</tbody>
</table>
</body>
</html>

最佳答案

首先,关闭您的标签。这里有很多无效的 HTML。其次,您将表格宽度 (100%) 混合为百分比,将单元格宽度(250 像素、100 像素)混合为像素宽度。这两个不兼容。选择一个或另一个并在整个表格中保持一致。

<table style="width:350px" border="1">
<thead>
<tr>
<th style="width:250px;">Tag</th>
<th style="width:100px; text-align:right;">Duration</th>
</tr>
</thead>
<tbody>
<tr>
<td>one</td>
<td>two</td>
</tr>
</tbody>
</table>

关于html - 在 Internet Explorer 7 中,文本对齐 : right is not taking effect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1954550/

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