IE & table & border & border-collapse & bug
shit IE
table border bug & border-collapse bug
> `border-collapse: collapse;`
table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
font-size: 13px;
font-weight: normal;
overflow: hidden;
margin-bottom: 15px;
color: #727272;
}
IE table border border-collapse bug?
https://stackoverflow.com/questions/16682591/border-collapse-not-working-in-ie10
table{
border-collapse: collapse;
}
table td{
border: 1px solid black;
}
solution
table{
border-spacing: 0px;
border-top: 1px solid black;
border-right: 1px solid black;
}
table td{
border-left: 1px solid black;
border-bottom: 1px solid black;
}
https://stackoverflow.com/questions/15747859/border-not-appearing-in-ie9-ie10
table{
border-top:1px solid #000;
}
tr{
border-left:1px solid #000;
border-bottom:1px solid #000;
}
td{
border-right:1px solid #000;
}
https://stackoverflow.com/questions/19706555/ie-table-cell-border-bug-with-colspan-set
solution
/*
table>tr>td:nth-of-type(n) {
border-left: 0;
border-bottom: 0;
}
*/
/* IE & shit table & border-collapse: collapse; */
table {
border-spacing: 0px;
border-top: 1px solid #f0f0f0;
border-right: 0;
}
table td {
border-left: 1px solid #f0f0f0;
border-bottom: 0;
border-right: 0;
}
tbody>tr>td:nth-last-of-type(1) {
border-right: 1px solid #f0f0f0;
}
tbody>tr:nth-last-of-type(1)>td {
border-bottom: 1px solid #f0f0f0;
}
https://stackoverflow.com/questions/16682591/border-collapse-not-working-in-ie10
https://stackoverflow.com/questions/9240772/border-collapse-issue-in-ie-8-compatibility-mode
https://stackoverflow.com/questions/19706555/ie-table-cell-border-bug-with-colspan-set
https://css-tricks.com/almanac/properties/b/border-collapse/
http://csarven.ca/tr-border-trick-for-ie
http://forums.mozillazine.org/viewtopic.php?t=157897
https://bugs.chromium.org/p/chromium/issues/detail?id=356132
https://robert.accettura.com/blog/2007/04/04/ie-table-border-bug/
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/9830637.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)