【发布时间】:2015-10-06 10:17:25
【问题描述】:
HTML5 Boilerplate 使用的 visuallyhidden 类在 Chrome 中并未完全隐藏 <table>s。
.visuallyhidden
{
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
澄清一下:该表格在 Chrome 中是不可见的,但它会占用物理空间并可能导致不需要的滚动条等。
【问题讨论】:
标签: css google-chrome html5boilerplate