Colors
Keywords
Hexadecimal
RGB
HSL
KeywordsLike red,black
The keywords notation provide limited options and thus are not the most practice
.task { background: maroon; } .count { background: yellow; }Hexadecimal
Start with #, followed by three or six character
.task { background: #800000; } .count { background: #ff0; }RGB
RGB color values are stated using the rgb() function, r means red, g means green, b means blue.
The integer from 0 to 255.
The RGB values also include an alpha, change by using the rgba().
The fourth value between 0 and 1.
.task { background: rgb(128, 0, 0); } .count { background: rgb(255, 255, 0); }
.task { background: rgba(128, 0, 0, .25); } .count { background: rgb(255, 255, 0, 1); }HSL & HSLa Colors
.task { background: hsl(0, 100%, 25%); } .count { background: hsl(60, 100%, 50%); }
The first value represent the color wheel
The second and third values, the saturation(飽和度) and lightness(亮度)
LengthAbsolute Lengths
Relative Lengths
Absolute LengthsPixels
cm
in
mm
The pixel is equal to 1/96 of an inch, thus there are 96 pixels in an inch
p { font-size: 14px; }Relative Lengths
em
%
.col { width: 50%; /* Base your parent element width */ }
.banner { font-size: 14px; width: 5em; /* The em unit relative to the font size of the closest parent elment with a stated font size */ }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/111224.html
摘要:本來在寫介紹逐漸發現單位需要好好介紹下本文不是翻譯保留原文的基礎上做出自己的理解為主參考摘要這個模塊描述了屬性的常用值和單位和在屬性定義時使用它們的語法。 CSS Values and Units Module Level 3 本來在寫css3 attr介紹 逐漸發現css單位需要好好介紹下 本文不是w3c翻譯 保留原文的基礎上 做出自己的理解為主 參考 http://www....
摘要:用于對齊行內水平元素,即那些屬性為或本文不考慮的元素。元素的基線取決于元素是否具有內容有內容,元素的基線是普通流中最后一個內容元素的基線例如左邊那個。 原文地址:Vertical-Align: All You Need To Know Often I need to vertically align elements side by side. 我經常需要并排地垂直對齊元素。 CSS ...
摘要:用于對齊行內水平元素,即那些屬性為或本文不考慮的元素。元素的基線取決于元素是否具有內容有內容,元素的基線是普通流中最后一個內容元素的基線例如左邊那個。 原文地址:Vertical-Align: All You Need To Know Often I need to vertically align elements side by side. 我經常需要并排地垂直對齊元素。 CSS ...
摘要:為情況下,直接返回執行過程,對右側表達式求值。包裝執行函數上下文創建迭代函數,可選遍歷方向是的簡寫。遍歷整個,返回匹配參數所列出的所有鍵值對的第一個值。傳遞一個數字表示從中返回個隨機元素。對集合每個元素調用函數后,得到。 // Internal function that returns an efficient (for current engines) version// of t...
摘要:為了避免不同項目之間進行復制粘貼,可以將這些常用的函數封裝到一起并發布包。目前所包含模塊已達三百個,基本可以滿足前端的日常工發需求。二使用打包工具該項目自帶打包工具,可以通過配置文件或命令行掃描源碼自動生成項目專用的工具庫。 前言 在業務開發過程中,我們經常會重復使用日期格式化、cookie 操作、模板、瀏覽器判斷、類型判斷等功能。為了避免不同項目之間進行復制粘貼,可以將這些常用的函數...
閱讀 3319·2021-11-08 13:12
閱讀 2756·2021-10-15 09:41
閱讀 1451·2021-10-08 10:05
閱讀 3300·2021-10-08 10:04
閱讀 2102·2021-09-29 09:34
閱讀 2472·2019-08-30 15:55
閱讀 2979·2019-08-30 15:45
閱讀 2577·2019-08-29 14:17