随着 IE8 逐渐退出舞台,不少高级的 CSS 特性都已被浏览器原生支持,再不学下就要过期了。css
:empty
区分空元素兼容性:不支持 IE8html
Demoweb
假如咱们有以上列表:浏览器
<div class="item">a</div>咱们但愿能够对空元素和非空元素区别处理,那么有两种方案。ide
用 :empty
选择空元素:布局
或者用 :not(:empty)
选择非空元素:flex
:*-Of-Type
选择元素兼容性:不支持 IE8url
举例说明。spa
给第一个 p 段落加粗:code
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
还能够有其余类型的参数:
calc
作流式布局兼容性:不支持 IE8
左中右的流式布局:
nav { position: fixed; left: 0; top: 0; width: 5rem; height: 100%;}vw
和 vh
作全屏滚动效果兼容性:不支持 IE8
vw
和 vh
是相对于 viewport 而言的,因此不会随内容和布局的变化而变。
unset
作 CSS Resetbody { color: red;}兼容性:不支持 IE
column
作响应式的列布局nav { column-count: 4; column-width: 150px; column-gap: 3rem; column-rule: 1px dashed #ccc; column-fill: auto;}兼容性:不支持 IE9