博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS 高级布局技巧
阅读量:5337 次
发布时间:2019-06-15

本文共 2218 字,大约阅读时间需要 7 分钟。

随着 IE8 逐渐退出舞台,很多高级的 CSS 特性都已被浏览器原生支持,再不学下就要过时了。

 

用 :empty 区分空元素

兼容性:不支持 IE8

/*假如我们有以上列表:*/
a
b
我们希望可以对空元素和非空元素区别处理,那么有两种方案。/* 用 :empty 选择空元素:*/.item:empty {
display: none;}/*或者用 :not(:empty) 选择非空元素:*/.item:not(:empty) {
border: 1px solid #ccc; /* ... */}

 

用 :*-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)

 

用 calc 做流式布局

兼容性:不支持 IE8

/* 左中右的流式布局:*/ nav {
position: fixed; left: 0; top: 0; width: 5rem; height: 100%;}side {
position: fixed; right: 0; top: 0; width: 20rem; height: 100%;}main {
margin-left: 5rem; width: calc(100% - 25rem);}

 

用 vw 和 vh 做全屏滚动效果

兼容性:不支持 IE8

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

 

用 unset 做 CSS Reset

兼容性:不支持 IE

body {
color: red;}button {
color: white; border: 1px solid #ccc;}/* 取消 section 中 button 的 color 设置 */section button {
color: unset;}

 

用 column 做响应式的列布局

兼容性:不支持 IE9

nav {
column-count: 4; column-width: 150px; column-gap: 3rem; column-rule: 1px dashed #ccc; column-fill: auto;}h2 {
column-span: all;}

 

转载于:https://www.cnblogs.com/htzan/p/6224892.html

你可能感兴趣的文章
京东静态网页练习记录
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
Solr4.8.0源码分析(5)之查询流程分析总述
查看>>
[Windows Server]安装系统显示“缺少计算机所需的介质驱动程序”解决方案
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Lucene 学习之二:数值类型的索引和范围查询分析
查看>>
软件开发工作模型
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Hangfire在ASP.NET CORE中的简单实现方法
查看>>
Algorithm——何为算法?
查看>>
Web服务器的原理
查看>>