pg电子游戏软件,类似车行168的软件,单机游戏内购破解平台,今日打牌财神方位查询老黄历

CSS高級布局技巧

時間:2020-10-15 14:13:44 CSS 我要投稿

CSS高級布局技巧

  IE8逐漸退出舞臺,很多高級的CSS特性都已被瀏覽器原生支持,那么CSS怎么布局?有哪些技巧呢?下面yjbys小編為大家分享css樣式布局技巧如下:

  用 empty 區分空元素

  兼容性:不支持 IE8

  假如我們有以上列表:

  <p class="item">a</p>

  <p class="item">b</p>

  <p class="item"></p>

  我們希望可以對空元素和非空元素區別處理,那么有兩種方案。

  用 :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高級布局技巧】相關文章:

CSS高級技巧匯總01-12

DIV+CSS布局和TABLE布局的優缺點11-15

css 書寫技巧 CSS 技巧教程簡介11-21

css網頁布局用Margin還是用Padding10-04

CSS樣式表代碼布局基礎教程11-21

CSS基礎知識之盒模型以及浮動布局10-11

網站頁面布局技巧06-17

AutoCAD布局應用技巧12-12

網頁設計布局技巧06-16

主站蜘蛛池模板: 北京市| 莲花县| 银川市| 保山市| 柘城县| 司法| 婺源县| 奉节县| 延川县| 永州市| 山丹县| 邢台县| 北安市| 济宁市| 都匀市| 札达县| 临西县| 万全县| 巨野县| 百色市| 汶川县| 纳雍县| 天水市| 南阳市| 鹤壁市| 汶上县| 扶余县| 洪洞县| 台南县| 苍溪县| 喜德县| 上犹县| 义马市| 隆尧县| 儋州市| 太仓市| 铜川市| 大埔县| 仲巴县| 宜城市| 扎赉特旗|