你可能不知道的7個CSS單位

来源:http://www.cnblogs.com/shouce/archive/2016/05/27/5533352.html
-Advertisement-
Play Games

如果你是一名前端開發工程師,一般px和em使用頻率比較高。但是今天本文的重點是介紹一些我們使用很少、甚至麽有聽說的單位。 一、重溫em 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <style type="text/css"> body {font-size: 12px; ...


如果你是一名前端開發工程師,一般px和em使用頻率比較高。但是今天本文的重點是介紹一些我們使用很少、甚至麽有聽說的單位。

一、重溫em

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <style type="text/css">     body {font-size: 12px;}     div  {font-size: 1.5em;} </style> <body>     <div>         Test-01 (12px * 1.5 = 18px)         <div>             Test-02 (18px * 1.5 = 27px)             <div>                 Test-03 (27px * 1.5 = 41px)             </div>         </div>     </div> </body>

因為font-size具有繼承性,所以層數越深字體越大。

二、rem

雖然上面使用em的情況可能會在開發中用到,但是我們有時候想有一個基準來擴展。遇到這種需求時,我們可以使用rem單位,rem中的“r”代表“root”,這意味著設置當前元素的字體大小為根元素,大多數情況下,我們會設置在html元素上。

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <style type="text/css">     html {font-size: 12px;}     div  {font-size: 1.5rem;} </style> <body>     <div>         Test-01 (12px * 1.5 = 18px)         <div>             Test-02 (12px * 1.5 = 18px)             <div>                 Test-03 (12px * 1.5 = 18px)             </div>         </div>     </div> </body>

當然,rem單位不僅應用在字體上,還可以實現到CSS 網格系統中。

三、vh 和 vw

在進行響應式佈局時,我們常常會使用百分比來佈局,然而CSS的百分比不總是解決每個問題的最佳方案,CSS的寬度相對於離它最近的父元素的寬度。如果你想使用視口的寬度、高度而不是父元素的寬高,可以使用vh和vw單位。 1vh = viewportHeight * 1/100; 1vw = viewportWidth * 1/100; 使用vh、vw就可以保證元素的寬高適應不同設備。

四、vmin 和 vmax

vw和vh對應於viewport的width和height,而vmin和vmax分別對應於width、height中的最小值和最大值,例如如果瀏覽器的寬/高被設置為1000px/600px,那麼

1vmin = 600 * 1/100;

1vmax = 1000 * 1/100;

下麵我們來看看幾個實例:

4.1 一個正方形元件總是觸摸至少兩個屏的邊緣

1 2 3 4 5 6 7 8 9 10 11 <style type="text/css"> .box {     height: 100vmin;     width : 100vmin; } </style> <body>     <div class="box" style=" margin: 0px !important; padding: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; min-height: inherit !important; background: none !important;">>         fdasjfdlas     </div> </body>

4.2 覆蓋全屏

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <style type="text/css">     body {         margin: 0;         padding:0;     }     .box {         /*寬屏顯示器width > height*/         height: 100vmin;         width : 100vmax;     } </style>   <div class="box" style=" margin: 0px !important; padding: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; min-height: inherit !important; background: none !important;">>     fdasjfdlas </div>

五、ex 和 ch

ex、ch單位與em、rem相似之處在於都依賴於font-size,但是ex、ch還依賴於font-family,基於font-specific來計算。 引用w3C規範:

ex unit Equal to the used x-height of the first available font[CSS3-FONTS] The x-height is so called because it is often equal to the height of the lowercase "x". However, an ‘ex’ is defined even for fonts that do not contain an "x". The x-height of a font can be found in different ways. Some fonts contain reliable metrics for the x-height. If reliable font metrics are not available, UAs may determine the x-height from the height of a lowercase glyph. One possible heuristic is to look at how far the glyph for the lowercase "o" extends below the baseline, and subtract that value from the top of its bounding box. In the cases where it is impossible or impractical to determine the x-height, a value of 0.5em must be assumed.
ch unit Equal to the used advance measure of the "0" (ZERO, U+0030) glyph found in the font used to render it.  

用一副圖來解釋這兩種單位的含義:

css-units

這兩種單位,有許多用途,大部分是用於印刷時的微調整。例如,sup、sub元素分別顯示上標和下標,但是我們可以使用position和bottom模擬:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <style type="text/css"> body {     margin: 0;     padding:0; }   .sup {     position: relative;     bottom: 1ex; } .sub {     position: relative;     bottom: -1ex; } </style> <div>     AaB<span class="sup">b</span>CcXxD<span class="sub">d</span>EeFf </div>

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.web.xml 配置: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <span style="font-size: 15px;"><servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org. ...
  • 題目地址:http://acm.hdu.edu.cn/showproblem.php?pid=5698 Problem Description 有一個無限大的矩形,初始時你在左上角(即第一行第一列),每次你都可以選擇一個右下方格子,並瞬移過去(如從下圖中的紅色格子能直接瞬移到藍色格子),求到第nnn ...
  • PHP 算術運算符 以下實例演示了使用不同算術運算符得到的不同結果: 運行 相關閱讀: php strstr 判斷一個字元串是否存在於里一個字元串中 php stristr() 函數查找字元串在另一字元串中的第一次出現 php strchr() 函數查找字元串在另一字元串中的第一次出現 php 兩個 ...
  • 簡介 springMVC是表現層,service充當業務層,mybatis作為持久層,通過spring將這三層整合起來。如下圖: 第一步:整合dao層 mybatis和spring整合,通過spring管理mapper介面。使用mapper的掃描器自動掃描mapper介面在spring中進行註冊。 ...
  • 獲取【下載地址】 【免費支持更新】三大資料庫 mysql oracle sqlsever 更專業、更強悍、適合不同用戶群體【新錄針對本系統的視頻教程,手把手教開發一個模塊,快速掌握本系統】 A集成代碼生成器 [正反雙向(單表、主表、明細表、樹形表,開發利器)+快速構建表單;freemaker模版技術 ...
  • 一、工廠模式 (1)簡單工廠模式: 創建一個產品介面,有一個賣產品的方法。 產品A實現產品介面,賣漢堡。 產品B實現產品介面,賣薯條。 創造者是簡單工廠模式的核心:返回值類型是IProduct介面,通過測試類傳來的形參確定返回哪個對象。 測試類:輸出薯條。 (2)方法工廠模式: (圖片來自於網路) ...
  • 在做校園網視頻網站的時候,首頁有一個導航頁面要實現滾動效果,有樣例,但代碼是在難弄懂,貌似網頁設計這塊還是只有自己的代碼自己懂,索性就仿造別人的效果自己做了一個,大體上還行,看起來還是比較流暢的,不次於原作的么。 現在先把代碼拷貝到這裡,以後再逐一簡化修改: 實現混動效果,腳本代碼如下: var a ...
  • 一:跑通ui-router. ui-router源碼在最後面 跑通後的樣子: 這個不解釋了,都是很基本的東西. 二:切換視圖: 這裡的name可以不寫,但是你得放到state的第一個參數里. 跑起來後的後果: 三:如何通過鏈接切換視圖. 1 <!DOCTYPE html> 2 <html> 3 <h ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...