CSS(Cascading Style Sheet,層疊樣式表)定義如何顯示HTML元素。javascript
當瀏覽器讀到一個樣式表,它就會按照這個樣式表來對文檔進行格式化(渲染)。css
每一個CSS樣式由兩個組成部分:選擇器和聲明。聲明又包括屬性和屬性值。每一個聲明以後用分號結束。html
/*單行註釋*/ /* 多 行 注 釋*/
行內式是在標記的style屬性中設定CSS樣式。不推薦大規模使用。java
<p style="color: red">Hello world!</p>
嵌入式是將CSS樣式集中寫在網頁的<head></head>標籤對的<style></style>標籤對中。格式以下:sql
<head> <meta charset="UTF-8"> <title>Title</title> <style> p{ background-color: #2b99ff; } </style> </head>
外部樣式就是將css寫在一個單獨的文件中,而後在頁面進行引入便可。推薦使用此方式。瀏覽器
<link href="mystyle.css" rel="stylesheet" type="text/css"/>
p {color: "red";}
元素選擇器中"p"表明標籤,全部的段落標籤p都會渲染出"{}"內的樣式。ide
#i1 {background-color: red;}
指定HTML標籤的ID,在HTML中ID是惟一的。「#」後面跟ID號字體
.c1 {font-size: 14px;} p.c1 {color: red;}
類選擇器以句點"."開頭,HTML標籤以相似於繼承的形式使用類中設置的樣式,可使用多個類,相似於多繼承。網站
<p class="c1">內容</p>
標籤內用屬性class=類名的方式時,不加句點"."。可是在定義時要加。ui
* {color:red;}
相似於Mysql的select語句,用*表明全部的內容,也與Python的from * import 模塊名 語法類似。
li a {color: green;}
給標籤li 內部的a標籤添加樣式。
全部在<li>與</li>之間的a標籤都添加該樣式。
div>p {font-family: "Arial Black", arial-black, cursive;}
給以div爲父級的p標籤添加樣式。所選擇的範圍比後代選擇器要小。
div+p { margin: 5px;}
在</div>以後的全部標籤,和<div>同級別。
#i1~p { border: 2px solid royalblue;}
在</div>以後的第一個標籤,和<div>同級別。
p[title] {color: red;} p[title="213"] {color: green;}
代碼的第一句:只要有title屬性名的標籤都找到並添加樣式。
代碼的第二句:當有title屬性的標籤,而且屬性的值爲213時才添加樣式。
當多個元素的樣式相同的時候,咱們沒有必要重複地爲每一個元素都設置樣式,咱們能夠經過在多個選擇器之間使用逗號分隔的分組選擇器來統一設置元素樣式。
div, p {color: red;}
.c1 p {color: red;}
類c1內部全部的p標籤的內容設置爲紅色。
div p,span {color: red;}
div p是一個後代選擇器,span是一個屬性選擇器,寫在一塊兒表示div內部的全部p以及所有的span所有使用該樣式。
僞類選擇器主要是用在a標籤上,設置連接的樣式。
<style> a:link {color: red;} a:hover {color: yellow;} a:active {color: black;} a:visited {color: green;} input:focus {background-color: red;} </style>
p:first-letter { color: red; font-size: 24px; } p:before { content: '*'; color: green; } p:after { content: '?'; color: deeppink; font-size: 48px; }
給特定的元素的首和尾添加樣式。
div { width: 400px; height: 100px; } p { font-family: "Sitka Banner", "Arial", sans-serif } p { font-size: 16px; font-weight: lighter; }
修改字體、寬高佔的像素,字重等。
值 | 描述 |
---|---|
normal | 默認值,標準粗細 |
bold | 粗體 |
bolder | 更粗 |
lighter | 更細 |
100~900 | 設置具體粗細,400等同於normal,而700等同於bold |
inherit | 繼承父元素字體的粗細值 |
p {color: red;}
p {color: rgb(0,0,255);} p {color: #FF6700;} p {color: rgba(0,0,255,0.8);}
能夠直接以英文指定顏色;
能夠用rgb()指定三原色;
能夠寫顏色的代碼;
能夠用rgba()設置透明度。
text-decoration: line-through;
刪除線
text-decoration: overline;
上劃線
text-decoration: underline;
下劃線
text-align: right;
居右
text-indent: 48px;
在開頭空出48個像素
a { text-decoration: none; }
連接的默認形式是有下劃線的,用這個樣式能夠把下劃線去掉。
background-color: green;
背景顏色
background-image: url()
背景圖片的設置1
background-repeat: no-repeat;
設置背景圖片不重複
background-position: center;
背景圖片居中
background: no-repeat center url("http://i7.hexun.com/2018-02-27/192516381.jpg") blue ;
支持一次設置多個樣式的屬性,不重複、居中、背景圖片和背景顏色,能夠自由調整書寫的順序,可是不影響最終的效果。
border-width: 3px;
間距3像素
border-style: dashed;
邊框是虛的方線
border: 3px solid red;
能夠一次設置多個屬性
<style> div { width: 400px; height: 400px; background-color: red; border: 3px solid black; border-radius: 100%; } </style>
代碼<div style="width: 400px;height: 400px;background-color: red;border: 3px solid black;border;radius: 100%;"></div>的瀏覽器渲染效果。
display: none;
隱藏標籤的內容
display: inline;
將塊兒級標籤變成行內標籤
display: block;
將選擇的標籤既具備行內標籤特色又有塊兒級標籤的特色
<style> ul { list-style-type: none; padding-left: 0; } </style>
看圖吧:
.margin-test { margin-top:5px; margin-right:10px; margin-bottom:15px; margin-left:20px; }
推薦使用簡寫:
.margin-test { margin: 5px 10px 15px 20px; }
順序:上右下左
常見居中:
.mycenter { margin: 0 auto; }
.padding-test { padding-top: 5px; padding-right: 10px; padding-bottom: 15px; padding-left: 20px; }
推薦使用簡寫:
.padding-test { padding: 5px 10px 15px 20px; }
順序:上右下左
補充padding的經常使用簡寫方式:
在 CSS 中,任何元素均可以浮動。
浮動元素會生成一個塊級框,而不論它自己是何種元素。
關於浮動的兩個特色:
left:向左浮動
right:向右浮動
none:默認值,不浮動
clear屬性規定元素的哪一側不容許其餘浮動元素。
值 | 描述 |
---|---|
left | 在左側不容許浮動元素。 |
right | 在右側不容許浮動元素。 |
both | 在左右兩側均不容許浮動元素。 |
none | 默認值。容許浮動元素出如今兩側。 |
inherit | 規定應該從父元素繼承 clear 屬性的值。 |
注意:clear屬性只會對自身起做用,而不會影響其餘元素。
清除浮動的反作用(父標籤塌陷問題)
主要有三種方式:
僞元素清除法(使用較多):
.clearfix:after { content: ""; display: block; clear: both; }
值 | 描述 |
---|---|
visible | 默認值。內容不會被修剪,會呈如今元素框以外。 |
hidden | 內容會被修剪,而且其他內容是不可見的。 |
scroll | 內容會被修剪,可是瀏覽器會顯示滾動條以便查看其他的內容。 |
auto | 若是內容被修剪,則瀏覽器會顯示滾動條以便查看其他的內容。 |
inherit | 規定應該從父元素繼承 overflow 屬性的值。 |
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>圓形的頭像示例</title> <style> * { margin: 0; padding: 0; background-color: #eeeeee; } .header-img { width: 150px; height: 150px; border: 3px solid white; border-radius: 50%; overflow: hidden; } .header-img>img { width: 100%; } </style> </head> <body> <div class="header-img"> <img src="https://pic.cnblogs.com/avatar/1342004/20180304191536.png" alt=""> </div> </body> </html>
static 默認值,無定位,不能看成絕對定位的參照物,而且設置標籤對象的left、top等值是不起做用的的。
相對定位是相對於該元素在文檔流中的原始位置,即以本身原始位置爲參照物。有趣的是,即便設定了元素的相對定位以及偏移值,元素還佔有着原來的位置,即佔據文檔流空間。對象遵循正常文檔流,但將依據top,right,bottom,left等屬性在正常文檔流中偏移位置。而其層疊經過z-index屬性定義。
注意:position:relative的一個主要用法:方便絕對定位元素找到參照物。
定義:設置爲絕對定位的元素框從文檔流徹底刪除,並相對於最近的已定位祖先元素定位,若是元素沒有已定位的祖先元素,那麼它的位置相對於最初的包含塊(即body元素)。元素原先在正常文檔流中所佔的空間會關閉,就好像該元素原來不存在同樣。元素定位後生成一個塊級框,而不論原來它在正常流中生成何種類型的框。
重點:若是父級設置了position屬性,例如position:relative;,那麼子元素就會以父級的左上角爲原始點進行定位。這樣能很好的解決自適應網站的標籤偏離問題,即父級爲自適應的,那我子元素就設置position:absolute;父元素設置position:relative;,而後Top、Right、Bottom、Left用百分比寬度表示。
另外,對象脫離正常文檔流,使用top,right,bottom,left等屬性進行絕對定位。而其層疊經過z-index屬性定義。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>絕對定位</title> <style> .c1 { height: 100px; width: 100px; background-color: red; float: left; } .c2 { height: 50px; width: 50px; background-color: #ff6700; float: right; margin-right: 400px; position: relative; } .c3 { height: 200px; width: 200px; background-color: green; position: absolute; top: 50px; } </style> </head> <body> <div class="c1"></div> <div class="c2"> <div class="c3"></div> </div> </body> </html>
fixed:對象脫離正常文檔流,使用top,right,bottom,left等屬性以窗口爲參考點進行定位,當出現滾動條時,對象不會隨着滾動。而其層疊經過z-index屬性 定義。 注意點: 一個元素若設置了 position:absolute | fixed; 則該元素就不能設置float。這 是一個常識性的知識點,由於這是兩個不一樣的流,一個是浮動流,另外一個是「定位流」。可是 relative 卻能夠。由於它本來所佔的空間仍然佔據文檔流。
在理論上,被設置爲fixed的元素會被定位於瀏覽器窗口的一個指定座標,不論窗口是否滾動,它都會固定在這個位置。
示例代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>返回頂部示例</title> <style> * { margin: 0; } .d1 { height: 1000px; background-color: #eeee; } .scrollTop { background-color: darkgrey; padding: 10px; text-align: center; position: fixed; right: 10px; bottom: 20px; } </style> </head> <body> <div class="d1">111</div> <div class="scrollTop">返回頂部</div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .c1 { height: 50px; width: 100px; background-color: dodgerblue; } .c2 { height: 100px; width: 50px; background-color: orange; position: relative; left: 100px; } </style> </head> <body> <div class="c1"></div> <div class="c2"></div> <div style="height: 100px;width: 200px;background-color: black"></div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .c1 { height: 50px; width: 100px; background-color: red; position: relative; } .c2 { height: 50px; width: 200px; background-color: green; position: absolute; left: 50px; } </style> </head> <body> <div class="c1">購物車 <div class="c2">空空如也~</div> <div style="height: 50px;width: 100px;background-color: deeppink"></div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <div class="c1" style="height: 50px;width: 500px;background-color: black"></div> <div class="c2" style="height: 50px;width: 100px;background-color: deeppink;position: fixed;right: 10px;bottom: 20px"></div> <div class="c3" style="height: 10px;width: 100px;background-color: green"></div> </body> </html>
上述例子可知:
脫離文檔流:
絕對定位
固定定位
不脫離文檔流:
相對定位
#i2 { z-index: 999; }
設置對象的層疊順序。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>自定義模態框</title> <style> .cover { background-color: rgba(0,0,0,0.65); position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; } .modal { background-color: white; position: fixed; width: 600px; height: 400px; left: 50%; top: 50%; margin: -200px 0 0 -300px; z-index: 1000; } </style> </head> <body> <div class="cover"></div> <div class="modal"></div> </body> </html>
用來定義透明效果。取值範圍是0~1,0是徹底透明,1是徹底不透明。