CSS 高級佈局技巧

CSS 高級佈局技巧

隨着 IE8 逐漸退出舞臺,不少高級的 CSS 特性都已被瀏覽器原生支持,再不學下就要過期了。css

用 :empty 區分空元素

兼容性:不支持 IE8html

Demoweb

假如咱們有以上列表:瀏覽器

<div class="item">a</div>
<div class="item">b</div>
<div class="item"></div>

咱們但願能夠對空元素和非空元素區別處理,那麼有兩種方案。ide

用 :empty 選擇空元素:佈局

.item:empty { display: none;}

或者用 :not(:empty) 選擇非空元素:flex

.item:not(:empty) { border: 1px solid #ccc; /* ... */}

用 :*-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 還能夠有其餘類型的參數:

/* 偶數個 */  :nth-of-type(even)
/* only 第三個 */:nth-of-type(3)
/* 每第三個 */:nth-of-type(3n)/*
每第四加三個,即 3, 7, 11, ... */: nth-of-type(4n+3)

用 calc 作流式佈局

兼容性:不支持 IE8

Demo

左中右的流式佈局:

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

Demo

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

Demo

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

用 column 作響應式的列布局

兼容性:不支持 IE9

Demo

nav { column-count: 4; column-width: 150px; column-gap: 3rem; column-rule: 1px dashed #ccc; column-fill: auto;}
h2 {column-span: all;}
相關文章
相關標籤/搜索