gpt4 book ai didi

html - 制作打破表格边界的特殊 td

转载 作者:行者123 更新时间:2023-11-28 06:14:54 25 4
gpt4 key购买 nike

假设我想创建一个表格,其中某些行的边框打破了表格的边界 - 就像这样。

 +-+-+-+
+-+-+-+
|+-+-+-+|
+-+-+-+

我该怎么做?

我试过 outlineoutline-offset,但 IE 不支持后者。

最佳答案

像这样使用一些 div 并溢出表格单元格:

https://jsbin.com/recexe/edit?html,css,output

table {
border-collapse: collapse;
}

td {
border:1px solid black;
width: 50px;
height: 50px;
position: relative;
}

.ol {
position: absolute;
left: -5px;
background-color: red;
top: 0;
bottom: 0;
width: 5px;
}

.or {
position: absolute;
right: -5px;
background-color: red;
top: 0;
bottom: 0;
width: 5px;
}
  <table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><div class="ol"></div></td>
<td></td>
<td><div class="or"></div></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>

关于html - 制作打破表格边界的特殊 td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35950701/

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