css奇数偶数选择器_CSS 之 高级布局

140f389195394d3cbfffb9b3ea1adbee.gif 阅读本文约需要6分钟

大家好,我是你们的导师,经常看我朋友圈的同学应该知道,我每天会在微信上给大家免费提供以下服务!

1、长期为你提供最优质的学习资源!

2、给你解决技术问题!

3、每天在朋友圈里分享优质的技术文章!

4、每周1、3、5送纸质书籍免费送给大家,每年至少送书800本书!

5、为大家推荐靠谱的就业单位!

请注意!我上面说的5点全部都是免费的!全网你应该找不到第二家吧!

当然,大家在我私人微信上问我问题,仅限回答web前端、java相关的。

---------------------------

好了,接下来开始今天的技术分享!上次老师跟大家分享了CSS 之 Grid 布局的知识,今天跟大家分享下CSS 之 高级布局的知识。

1 用 :empty 区分空元素 随着 IE8 逐渐退出舞台,很多高级的 CSS 特性都已被浏览器原生支持,再不学下就要过时了。 兼容性: 不支持 IE8
Demo地址:https://jsbin.com/rikecogamu/2/edit?html,css,output
假如我们有以上列表:
class="item">a
class="item">b
class="item">
我们希望可以对空元素和非空元素区别处理,那么有两种方案。 用 :empty 选择空元素:
.item:empty {  display: none;}
或者用 :not(:empty) 选择非空元素:
.item:not(:empty) {  border: 1px solid #ccc;  /* ... */}
2 用 :*-Of-Type 选择元素 兼容性: 不支持 IE8 举例说明。 给第一个 p 段落加粗:
p:first-of-type {  font-weight: bold;}
给最后一个 img 加边框:
img:last-of-type {  border: 10px solid #ccc;}
给无相连的 blockquote 加样式:
blockquote:only-of-type {  border-left: 5px solid #ccc;  padding-left: 2em;}
让奇数列的 p 段落显示红色:
p:nth-of-type(even) {  color: red;}
此外,:nth-of-type 还可以有其他类型的参数:
/* 偶数个 */:nth-of-type(even)/* only 第三个 */:nth-of-type(3)/* 每第三个 */:nth-of-type(3n)/* 每第四加三个,即 3, 7, 11, ... */:nth-of-type(4n+3)
3 用 calc 做流式布局 兼容性: 不支持 IE8
Demo地址:https://jsbin.com/rajazobeka/3/edit
左中右的流式布局:
nav {  position: fixed;  left: 0;  top: 0;  width: 5rem;  height: 100%;}aside {  position: fixed;  right: 0;  top: 0;  width: 20rem;  height: 100%;}main {  margin-left: 5rem;  width: calc(100% - 25rem);}
4 用 vw 和 vh 做全屏滚动效果 兼容性: 不支持 IE8
Demo地址:https://jsbin.com/doridehewe/1/edit?html,css,output
vw 和 vh 是相对于 viewport 而言的,所以不会随内容和布局的变化而变。
section {  width: 100vw;  height: 100vh;    display: flex;  align-items: center;  justify-content: center;  text-align: center;    background-size: cover;  background-repeat: no-repeat;  background-attachment: fixed;}section:nth-of-type(1) {  background-image: url('https://unsplash.it/1024/683?image=1068');}section:nth-of-type(2) {  background-image: url('https://unsplash.it/1024/683?image=1073');}section:nth-of-type(3) {  background-image: url('https://unsplash.it/1024/683?image=1047');}section:nth-of-type(4) {  background-image: url('https://unsplash.it/1024/683?image=1032');}body {  margin: 0;}p {  color: #fff;  font-size: 100px;  font-family: monospace;}
5 用 unset 做 CSS Reset 兼容性: 不支持 IE
Demo地址:https://jsbin.com/titugibebu/3/edit?html,css,output
body {  color: red;}button {  color: white;  border: 1px solid #ccc;}/* 取消 section 中 button 的 color 设置 */section button {  color: unset;}
6 用 column 做响应式的列布局 兼容性: 不支持 IE9
Demo地址:https://jsbin.com/xaruzuratu/2/edit?html,css,output
nav {  column-count: 4;  column-width: 150px;  column-gap: 3rem;  column-rule: 1px dashed #ccc;  column-fill: auto;}h2 {  column-span: all;}
参考文献:https://github.com/sorrycc/blog/issues/14
今天就分享这么多, CSS 之 高级布局, 学会了多少欢迎在留言区评论,对于有价值的留言,我们都会一一回复的。如果觉得文章对你有一丢丢帮助,请点右下角【在看】,让更多人看到该文章。 53b9fdd1f5ca799f056965070babd18f.gif

f570f6a7b9d838afd4a73d2e106634c3.png

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值