好程序员web前端教程分享CSS技巧!

好程序员web前端教程分享CSS技巧!现在学 web人越来越多,小白的问题也越来越多,那么今天 就为大家分享一下 CSS 学习 技巧! w eb前端工作中离不开css的使用。为了帮助大家提高自己的css使用技巧,下面让我们一起来看一看吧!

1、使用 :not() 为导航添加/取消边框

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

/* add border */


.nav li {


border-right: 1px solid #666;


}


/* remove border */


.nav li:last-child {


border-right: none;


}

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

.nav li:not(:last-child) {


border-right: 1px solid #666;


}

当然,你也可以使用 .nav li + li 甚至 .nav li:first-child ~ li,但是使用 :not() 可以使意图更加明确。

2、给 body 添加 line-height 属性

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

body {


line-height: 1;


}

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

3、垂直居中

这并不是什么魔法,你可以垂直居中任何元素:

html, body {


height: 100%;


margin: 0;


}


body {


- w ebkit-align-items: center;


-ms-flex-align: center;


align-items: center;


display: - w ebkit-flex;


display: flex;


}

还需要其他的?水平居中、垂直居中,在任何时间、任何地方?可以看看CSS-Tricks的这篇文章。

注意:flexbox 在 IE11 下存在一些bug。

4、使用逗号分隔列表

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

ul > li:not(:last-child)::after {


content: ",";


}

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

5、 使用负的 nth-child 选取元素

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

li {

display: none;

}

/* 选择第1到3个元素并显示它们 */

li:nth-child(-n+3) {

display: block;

}

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

li:not(:nth-child(-n+3)) {

display: none;

}

是不是非常简单?

6、 使用 SVG 作 icon 图标

没什么理由不使用 SVG 作 icon 图标:

.logo {

background: url("logo.svg");

}

SVG 对于任何分辨率的缩放效果都很好,并且支持 IE9+所有浏览器,所以,放弃使用 .png、.jpg、.gif文件吧。

注:以下代码对于使用辅助设备上网的用户可以提升可访问性:

.no-svg .icon-only:after {

content: attr(aria-label);

}

7、文本展示优化

有时候字体并不是对于所有设备都显示为最佳效果,所以使用浏览器来帮忙吧:

html {

-moz-osx-font-smoothing: grayscale;

- w ebkit-font-smoothing: antialiased;

text-rendering: optimizeLegibility;

}

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

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

.slider ul {


max-height: 0;


overlo w : hidden;


}


.slider:hover ul {


max-height: 1000px;


transition: .3s ease; /* animate to max-height */


}

9、继承 box-sizing

让 box-sizing 继承自 html :

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

10、 设置表格相同宽度

.calendar {

table-layout: fixed;

}

11、使用 Flexbox 来避免 Margin Hacks

在做多列布局的时候,可以通过 Flexbox 的 space-bet w een 属性来避免nth-、first-、 last-child 等 hacks:

.list {

display: flex;

justify-content: space-bet w een;

}

.list .person {

flex-basis: 23%;

}

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

12、对空链接使用属性选择器

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

a[href^="http"]:empty::before {

content: attr(href);

}


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/69913892/viewspace-2648716/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/69913892/viewspace-2648716/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值