gpt4 book ai didi

html - Colspan 不适用于 宽度设置? (IE7)

转载 作者:太空狗 更新时间:2023-10-29 15:43:20 24 4
gpt4 key购买 nike

当我使用固定宽度 (IE 7) 时,我无法让 colspan 工作?为什么?!

示例代码:




<头>
<样式>
.inputGroup td
{ 宽度:250px; }


<正文>
<表类="输入组">

单元格1
单元格2


这应该跨越两列,但它没有


单元格1
单元格2




帮助任何人? :(

最佳答案

可以,但是您限制了宽度。如果需要,请尝试创建另一个名为“.doubleSpanInputGroup”或宽度为 500 的类,并将该类设置到跨越列上。

例如。

<html>
<head>
<style>
.inputGroup td
{ width:250px; }
.inputGroup td.doubleInputGroup
{ width:500px; }
</style>
</head>
<body>
<table class="inputGroup">
<tr>
<td>cell1</td>
<td>cell2</td>
</tr>
<tr>
<td colspan="2" class="doubleInputGroup">This should span two columns but it doesnt</td>
</tr>
<tr>
<td>cell1</td>
<td>cell2</td>
</tr>
</table>
</body>
</html>

编辑:使新样式更具层次感

关于html - Colspan 不适用于 <td> 宽度设置? (IE7),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/947815/

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