作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在左下角的单元格(实际上是第二张表最左边的单元格)上有一个右边框,而不会弄乱右侧单元格的位置...
https://jsfiddle.net/horacebury/vnng82qp/4/
CSS 非常繁琐...
.tg td{font-family:Times New Roman, sans-serif;font-size:16px;border-style:solid;border-width:0px 1px 1px 0px;border-spacing:0px;overflow:hidden;word-break:normal;background-color: #EEE;border-color: #DDD;border-top: none !important;text-align: right; vertical-align: top; margin: 0px 0px 0px 0px; }
.tg .tg-yw4l{ width: 145px; padding: 4px 4px 4px 0px; }
.tg .tg-yw4g{ width: 49px; padding: 4px 0px 4px 0px; border-width: 0px 0px 1px 1px; }
最佳答案
我找不到使用边框或调整框大小的解决方案。不过,您可以使用伪元素来做到这一点。
注意 因为它旁边的单元格有overflow: hidden
,所以伪元素必须相对于表格而不是单元格定位。
.tg {
position: relative;
}
.tg::after {
position: absolute;
content: '';
height: 26px;
top: 0;
left: 50px;
background: red;
width: 1px;
}
更新
另一种方法是将受影响的单元格定位到右侧。
.tg .tg-yw4g {
width: 49px;
padding: 4px 0px 4px 0px;
border-width: 0px 0px 1px 1px;
border-right: 1px solid red;
}
.tg .tg-yw4g + td {
width: 144px;
}
关于css - 如何在不对齐所有内容的情况下将边框添加到单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42370457/
我是一名优秀的程序员,十分优秀!