CSS小技巧

一些CSS的小技巧往往能够发挥出巨大的能量。本文转载至前端开发者应该知道的CSS小技巧

使用:not()去除导航上不需要的边框

1
2
3
4
/* 只保留导航列表最后一项的右边框 */
.nav li:not(:last-child) {
border-right: 1px solid #666;
}

为body添加行高

1
2
3
4
/* 这种方式下,文本元素可以很容易从body继承 */
body {
line-height: 1;
}

垂直居中任何元素

1
2
3
4
5
6
7
8
9
10
11
html, body {
height: 100%;
margin: 0;
}
body {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-flex;
display: flex;
}

逗号分离的列表

1
2
3
4
/* 使用伪类:not() ,这样最后一个元素不会被添加逗号 */
ul > li:not(:last-child)::after {
content: ",";
}

使用负nth-child选择元素

1
2
3
4
/* 选择1到3的元素并显示 */
li:not(:nth-child(-n+3)){
display: none;
}

使用SVG图标

SVG对所有分辨率类型具有良好的伸缩性,IE9以上的所有浏览器都支持。

1
2
3
4
/* 如果你使用SVG图标按钮,同时SVG加载失败,下面能帮助你保持可访问性 */
.no-svg .icon-only:after {
content: attr(aria-label);
}

文本显示优化

1
2
3
4
5
html {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}

继承box-sizing

1
2
3
4
5
6
7
/* 从html继承box-sizing */
html {
box-sizing: border-box;
}
, :before, *:after {
box-sizing: inherit;
}

表格单元格等宽

1
2
3
4
/* 无痛表格布局 */
.calendar {
table-layout: fixed;
}
叶思玄 wechat
如果觉得我的文章对您有用,请随意赞赏。您的支持将鼓励我继续创作!