13个CSS高级技巧

使用:not()在菜单上添加/取消边框


很多人会这样给导航添加边框,然后给最后一个取消掉:

1
2
3
4
5
6
7
8
/* add border */
.nav li {
border-right: 1px solid #666;
}
/* remove border */
.nav li:last-child {
border-right: none;
}

其实,用CSS3:not()可以简化为下面的代码:

1
2
3
.nav li:not(:last-child) {
border-right: 1px solid #666;
}

当然,你也可以使用.nav li + li甚至.nav li:first-child ~ li,但是使用:not()可以使意图更加明确
所有主流浏览器均支持:not选择器,除了IE8及更早的版本

body添加line-height属性


你不需要为<p><h*>分别添加line-height属性,相反的,只需要添加到body上即可:

1
2
3
body {
line-height: 1;
}

这样,文本元素就可以很容易的从body继承该属性

垂直居中


可以垂直居中任何元素:

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;
}

注:flexbox在IE11下存在一些bug

使用逗号分割列表


使列表看起来像是用逗号分割的:

1
2
3
ul > li:not(:last-child)::after {
content: ",";
}

通过:not()伪类去掉最后一个元素后面的逗号

使用负的nth-child选取元素


使用负的nth-child在1到n之间选择元素:

1
2
3
4
5
6
7
li {
display: none;
}
/* 选择第1到3个元素并显示它们 */
li:nth-child(-n+3) {
display: block;
}

当然,如果你了解:not()的话,还可以这么做:

1
2
3
li:not(:nth-child(-n+3)) {
display: none;
}

使用SVG作icon图标


没什么理由不使用SVGicon图标:

1
2
3
.logo {
background: url("logo.svg");
}

SVG对于任何分辨率的缩放效果都很好,并且支持 IE9+所有浏览器,所以,放弃使用png、jpg、gif文件吧
注:以下代码对于使用辅助设备上网的用户可以提升可访问性:

1
2
3
.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;
}

注:请负责任地使用optimizeLegibility。此外IE/Edge不支持text-rendering

使用max-height实现纯CSS幻灯片


使用max-height与超出隐藏实现纯CSS的幻灯片:

1
2
3
4
5
6
7
8
.slider ul {
max-height: 0;
overlow: hidden;
}
.slider:hover ul {
max-height: 1000px;
transition: .3s ease; /* animate to max-height */
}

继承box-sizing


box-sizing继承自html

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

这使得在插件或者其他组件中修改box-sizing属性变得更加容易

设置表格相同宽度


1
2
3
.calendar {
table-layout: fixed;
}

使用Flexbox来避免Margin Hacks


在做多列布局的时候,可以通过Flexboxspace-between属性来避免nth-first-last-child等hacks:

1
2
3
4
5
6
7
.list {
display: flex;
justify-content: space-between;
}
.list .person {
flex-basis: 23%;
}

这样,列之间的空白就会被均匀的填满

对空链接使用属性选择器


<a>中没有文本而href不为空的时候,显示其链接:

1
2
3
a[href^="http"]:empty::before {
content: attr(href);
}

文本溢出省略的处理方法

单行文本溢出

1
2
3
4
5
.inline{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

多行文本溢出

1
2
3
4
5
6
7
8
.foo{
display: -webkit-box!important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-box-orient: vertical;/*方向*/
-webkit-line-clamp:4;/*显示多少行文本*/
}

如果您觉得我的文章对您有用,请随意打赏。

您的支持将鼓励我继续创作!

¥ 打赏支持

文章导航

目录

×
  1. 1. 使用:not()在菜单上添加/取消边框
  2. 2. 给body添加line-height属性
  3. 3. 垂直居中
  4. 4. 使用逗号分割列表
  5. 5. 使用负的nth-child选取元素
  6. 6. 使用SVG作icon图标
  7. 7. 优化显示文本
  8. 8. 使用max-height实现纯CSS幻灯片
  9. 9. 继承box-sizing
  10. 10. 设置表格相同宽度
  11. 11. 使用Flexbox来避免Margin Hacks
  12. 12. 对空链接使用属性选择器
  13. 13. 文本溢出省略的处理方法