用 :empty 区分空元素
兼容性:不支持 IE8
假如我们有以上列表:
<div class="item">a</div> <div class="item">b</div> <div class="item"></div>
我们希望可以对空元素和非空元素区别处理,那么有两种方案。
用 :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%; } aside { 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; }
更多CSS 高级布局技巧相关文章请关注PHP中文网!

在本周的综述中:Firefox获得了类似锁匠的力量,三星的Galaxy Store开始支持Progressive Web Apps,CSS Subgrid正在Firefox发货

在本周的综述中:Internet Explorer进入Edge,Google Search Console吹捧新的速度报告,Firefox提供了Facebook&#039;

盖茨比(Gatsby)进行了出色的处理和处理图像。例如,它可以帮助您节省图像优化的时间,因为您不必手动


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境