css 小知识点
苹果浏览默认表单 单选 多选 下拉列表 效果的去除 提交按钮
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
http://www.css88.com/archives/5402
a标签点击出现阴影效果
a { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; }
元素table 表头固定
table tbody {
display: block;
height: 350px;
overflow-y: auto;
}
table thead, tbody tr {
display: table;
100%;
table-layout: fixed;
}