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/
IE & table & border & border-collapse & bug的更多相关文章
- Saiku Table展示数据合并bug修复(二十五)
Saiku Table展示数据合并bug修复 Saiku以table的形式展示数据,如果点击了 非空的字段 按钮,则会自动进行数据合并,为空的数据行以及数据列都会自动隐藏掉. 首先我们应该定位问题: ...
- table的border重合问题
1. table { border-collapse: collapse; } td { border: 1px solid blue; } 用css的方法直接实现 2. border="1 ...
- HTML中表格table边框border(1px还嫌粗)的解决方案:
摘自:http://blog.sina.com.cn/s/blog_ae809a730102vrx8.html 第一种方法: 1.将table的属性设置为:BORDER=0 .cellspacing= ...
- 有效解决js中添加border后动画bug问题
做了个demo发现如果一个div不加border属性,用对象的offsetWidth属性来控制width没问题,但是如果一旦加了border属性,问题就来了. 其实offsetWidth属性获取的的是 ...
- Table 边框合并(collapse)
border-collapse:collapse 用于表格属性, 表示表格的两边框合并为一条; <style type="text/css"> table { bord ...
- LODOP中table自动分页补线加border
LODOP中可以用ADD_PRINT_TABLE.ADD_PRINT_HTM.ADD_PRINT_HTML.ADD_PRINT_TBURL等可以输出超文本的表格,超文有超过打印项高度或纸张高度自动分页 ...
- padding margin border 和元素大小
元素占用宽度 = 元素宽度+padding+border+margin 注意margin只是隔开元素,不会使得元素变大,而padding会使得元素变大,也就是说 元素真实宽度=元素宽度+padding ...
- Border Theory
持续更新中!!!更个屁,无线停更! 前言: KMP 学傻了,看 skyh 说啥 border 树,跑来学 border 理论 洛谷云剪切板:https://www.luogu.com.cn/paste ...
- WPF入门教程系列十——布局之Border与ViewBox(五)
九. Border Border 是一个装饰的控件,此控件绘制边框及背景,在 Border 中只能有一个子控件,若要显示多个子控件,需要将一个附加的 Panel 控件放置在父 Border 中.然后可 ...
随机推荐
- [完美方案+无懈可击]ubuntu 14.04(LTS) + GTX 980Ti显卡配置
安装好系统之后出现的问题: 1 不能上网:后来通过删除链接新建一个以太网链接(自动DHCP)重启莫名其妙就好使了. 2 分辨率只有两个:1024x ? 和 800x600. 分辨率低到让人头痛.通过查 ...
- visual studio 2015 key vs2015密钥
Visual Studio Professional 2015简体中文版(专业版)KEY:HMGNV-WCYXV-X7G9W-YCX63-B98R2Visual Studio Enterprise 2 ...
- Python学习 Day 3 字符串 编码 list tuple 循环 dict set
字符串和编码 字符 ASCII Unicode UTF-8 A 1000001 00000000 01000001 1000001 中 x 01001110 00101101 11100100 101 ...
- mysql中int(1)与int(10)的区别
INT[(M)] [UNSIGNED] [ZEROFILL] 普通大小的整数.带符号的范围是-2147483648到2147483647.无符号的范围是0到4294967295. INT(1) 和 I ...
- 新萝卜家园Ghost版Win10系统X32极速装机版2015年4月
来自:系统妈,系统下载地址:http://www.xitongma.com/windows10/2015-03-30/6638.html 新萝卜家园Ghost Win10 X32 10041电脑城极速 ...
- zabbix_sender
转载一个python写的zabbix sender脚本 #!/usr/bin/env python # -*- coding: utf-8 -*- import socket import struc ...
- leetcode_712. Minimum ASCII Delete Sum for Two Strings
https://leetcode.com/problems/minimum-ascii-delete-sum-for-two-strings/ 给定两个string s1,s2,从s1和s2中删除一些 ...
- 引用类型 (Reference Type Matters)、扩展与派发方式
引用类型 (Reference Type Matters) 引用的类型决定了派发的方式. 这很显而易见, 但也是决定性的差异. 一个比较常见的疑惑, 发生在一个协议拓展和类型拓展同时实现了同一个函数的 ...
- 解决【npm ERR! Unexpected end of JSON input while parsing near '...sh_time":141072930277'】方案
问题描述执行npm install的时候报错npm ERR! Unexpected end of JSON input while parsing near '...sh_time":141 ...
- ansible API(开发应用)
7. ansible API(开发应用) 官网链接