CSS基礎知識點總結
一、css的簡介
1、什麼是css
層疊樣式表,css是對html進行樣式修飾語言
層疊:就是層層覆蓋疊加,如果不同的css樣式對同一html標籤進行修飾,樣式有衝突的部分應用優先順序高的,不衝突的部分共同作用
樣式表:就是css屬性樣式的集合
2、css的作用
(1)修飾html的 使其html樣式更加好看
(2)提高樣式程式碼的複用性
(3)html的內容與樣式相分離 便於後期維護
3、css的引入方式和書寫規範
(1)內嵌樣式
內嵌樣式是把css的程式碼嵌入到html標籤中
(1)使用style屬性將樣式嵌入到html標籤中
(2)屬性的寫法:屬性:屬性值
(3)多個屬性之間使用分號;隔開
不建議使用
(2)內部樣式
在head標籤中使用style標籤進行css的引入
(1)使用style標籤進行css的引入
<style type="text/css">
屬性:type:告知瀏覽器使用css解析器去解析
(2)屬性的寫法:屬性:屬性值
(3)多個屬性之間使用分號;隔開
(3)外部樣式
將css樣式抽取成一個單獨css檔案,誰去使用誰就引用
(1)建立css檔案 將css屬性寫在css檔案中
(2)在head中使用link標籤進行引入
rel:代表要引入的檔案與html的關係
type:告知瀏覽器使用css解析器去解析
href:css檔案地址
(3)屬性的寫法:屬性:屬性值
(4)多個屬性之間使用分號;隔開
(1)link所有瀏覽器都支援 import部分低版本IE不支援
(2)import方式是等待html載入完畢之後再載入
(3)import方式不支援js的動態修改
二、css選擇器
1、基本選擇器
(1)元素選擇器
語法:html標籤名{css屬性}
示例:
語法:#id的值{css屬性}
語法:.class的值{css屬性}
2、屬性選擇器
語法:基本選擇器[元素屬性=‘屬性值’]{css屬性}
示例:
3、偽元素選擇器
a標籤的偽元素選擇器
語法:
靜止狀態 a:link{css屬性}
懸浮狀態 a:hover{css屬性}
觸發狀態 a:active{css屬性}
完成狀態 a:visited{css屬性}
4、層級選擇器
語法:父級選擇器 子級選擇器 .....用空格隔開。
示例:
三、css屬性
1、文字屬性
font-size:字型大小,解決html裡font標籤字型有最大限制的方法
font-family:字型型別
2、文字屬性
color:顏色
text-decoration:下劃線(a標籤href預設帶下劃線)
屬性值:none underline
text-align:對齊方式
background-color:背景顏色
background-image:背景圖片
屬性值:url("圖片地址");
background-repeat:平鋪方式
屬性值:預設橫向縱向平鋪,滿屏
repeat:橫向縱向平鋪
no-repeat:不平鋪
repeat-y:縱向
repeat-x:橫向
4、列表屬性
list-style-type:列表項前的小標誌
屬性值:太多了
list-style-image:列表項前的小圖片
屬性值:url("圖片地址");
5、尺寸屬性
width:寬度
display:
屬性值:none:隱藏
block:塊級顯示
inline:行級顯示
屬性值:left right
clear:清除浮動 left right both
缺點: (1)影響相鄰元素不能正常顯示
(2)影響父元素不能正常顯示
四、css盒子模型
border:
border-width:邊框的寬度
border-color:邊框的顏色
border-style:邊框的線型
border-top:上邊框
border-bottom:下邊框
border-left:左邊框
border-right:右邊框
padding:
代表邊框內壁與內部元素之間的距離
padding:10px;代表上下左右都是10px
padding:1px 2px 3px 4px;上右下左
padding:1px 2px;上下/左右
padding:1px 2px 3px;
padding-top:單獨設定
margin:
代表邊框外壁與其他元素之間的距離
margin:10px;代表上下左右都是10px
margin:1px 2px 3px 4px;上右下左
margin:1px 2px;上下/左右
margin:1px 2px 3px;
margin-top:單獨設定
1、什麼是css
層疊樣式表,css是對html進行樣式修飾語言
層疊:就是層層覆蓋疊加,如果不同的css樣式對同一html標籤進行修飾,樣式有衝突的部分應用優先順序高的,不衝突的部分共同作用
樣式表:就是css屬性樣式的集合
2、css的作用
(1)修飾html的 使其html樣式更加好看
(2)提高樣式程式碼的複用性
(3)html的內容與樣式相分離 便於後期維護
3、css的引入方式和書寫規範
(1)內嵌樣式
內嵌樣式是把css的程式碼嵌入到html標籤中
<div style="color:red;font-size: 100px;">你好!2018</div>
語法:(1)使用style屬性將樣式嵌入到html標籤中
(2)屬性的寫法:屬性:屬性值
(3)多個屬性之間使用分號;隔開
不建議使用
(2)內部樣式
在head標籤中使用style標籤進行css的引入
<style type="text/css">
div{color:red;font-size: 100px;}
</style>
語法:(1)使用style標籤進行css的引入
<style type="text/css">
屬性:type:告知瀏覽器使用css解析器去解析
(2)屬性的寫法:屬性:屬性值
(3)多個屬性之間使用分號;隔開
(3)外部樣式
將css樣式抽取成一個單獨css檔案,誰去使用誰就引用
<link rel="stylesheet" type="text/css" href="cstyle.css"/>
語法:(1)建立css檔案 將css屬性寫在css檔案中
(2)在head中使用link標籤進行引入
<link rel="stylesheet" type="text/css" href="css檔案地址"/>
rel:代表要引入的檔案與html的關係
type:告知瀏覽器使用css解析器去解析
href:css檔案地址
(3)屬性的寫法:屬性:屬性值
(4)多個屬性之間使用分號;隔開
(4)@import方式
基本不用,類似第(2)種和第(3)種結合
<style type="text/css">
@import url("css地址");
</style>
link與@import方式的區別:(1)link所有瀏覽器都支援 import部分低版本IE不支援
(2)import方式是等待html載入完畢之後再載入
(3)import方式不支援js的動態修改
二、css選擇器
1、基本選擇器
(1)元素選擇器
語法:html標籤名{css屬性}
示例:
<style type="text/css">
span{color:red;font-size:100px; }
</style>
<span>hello CSS!!!</span>
(2)id選擇器 id唯一性語法:#id的值{css屬性}
示例:
<style type="text/css">
#div1{background-color: red;}
#div2{background-color: pink;}
</style>
<div id="div1">hello css1!!!</div>
<div id="div2">hello css2!!!</div>
(3)class選擇器語法:.class的值{css屬性}
示例:
<style type="text/css">
.style1{background-color: red}
.style2{background-color: pink}
</style>
<div class="style1">div1</div>
<div class="style1">div2</div>
<div class="style2">div3</div>
注意*:選擇器的優先順序:id>class>元素,優先順序高的會把優先順序低的樣式覆蓋掉,只對該選擇器指定的屬性覆蓋,對不存在於較高選擇器但存在於較低選擇器的屬性仍然起作用。2、屬性選擇器
語法:基本選擇器[元素屬性=‘屬性值’]{css屬性}
示例:
<style type="text/css">
input[type='text']{background-color: yellow}
input[type='password']{background-color: pink}
</style>
<form action="">
name:<input type="text" /><br/>
pass:<input type="password" /><br/>
</form>
3、偽元素選擇器
a標籤的偽元素選擇器
語法:
靜止狀態 a:link{css屬性}
懸浮狀態 a:hover{css屬性}
觸發狀態 a:active{css屬性}
完成狀態 a:visited{css屬性}
示例:
<style type="text/css">
a:link{color:blue}
a:hover{color:red}
a:active{color:yellow}
a:visited{color:green}
</style>
<a href="#">click me!</a>
用於標籤的狀態切換(PS:href="#"表示跳轉當前頁面)4、層級選擇器
語法:父級選擇器 子級選擇器 .....用空格隔開。
示例:
<style type="text/css">
#d1 .dd2 span{color:red}
</style>
<div id="d1">
<div class="dd1">
<span>span1-1</span>
</div>
<div class="dd2">
<span>span1-2</span>
</div>
</div>
<div id="d2">
<div class="dd1">
<span>span1-1</span>
</div>
<div class="dd2">
<span>span1-2</span>
</div>
</div>
三、css屬性
1、文字屬性
font-size:字型大小,解決html裡font標籤字型有最大限制的方法
font-family:字型型別
2、文字屬性
color:顏色
text-decoration:下劃線(a標籤href預設帶下劃線)
屬性值:none underline
text-align:對齊方式
屬性值:left center right
<style type="text/css">
div{color:red;text-decoration: underline;text-align: right }
a{text-decoration: none;}
</style>
<div>hello css!!!</div>
<a href="#">click me!!!</a>
3、背景屬性background-color:背景顏色
background-image:背景圖片
屬性值:url("圖片地址");
background-repeat:平鋪方式
屬性值:預設橫向縱向平鋪,滿屏
repeat:橫向縱向平鋪
no-repeat:不平鋪
repeat-y:縱向
repeat-x:橫向
body{
background-color: black;
background-image: url("images/dog.gif");
background-repeat: repeat-y;
}
4、列表屬性
list-style-type:列表項前的小標誌
屬性值:太多了
list-style-image:列表項前的小圖片
屬性值:url("圖片地址");
<style type="text/css">
/* ul{list-style-type: decimal-leading-zero;} */
ul{list-style-image: url("images/forward.gif");}
</style>
<ul>
<li>####</li>
<li>!!!!!</li>
<li>****</li>
</ul>
5、尺寸屬性
width:寬度
height:高度
<style type="text/css">
#d1{background-color: red;width: 200px;height: 200px;}
#d2{background-color: pink;width: 200px;height: 200px;}
</style>
<div id="d1">div1</div>
<div id="d2">div2</div>
6、顯示屬性display:
屬性值:none:隱藏
block:塊級顯示
inline:行級顯示
<style type="text/css">
span{color:red;display: none}
</style>
<script type="text/javascript">
document.getElementById("btn").onclick = function(){
document.getElementById("span").style.display = "inline";
};
</script>
<form action="">
name:<input id="name" type="text" /><span id="span">對不起 輸入不符合要求</span>
<br>
pass:<input id="pass" type="password" />
<br/>
<input id="btn" type="button" value="button" />
</form>
7、浮動屬性
以父標籤為參照物(比如在body裡面的div,那麼父標籤就是body)
屬性值:left right
clear:清除浮動 left right both
缺點: (1)影響相鄰元素不能正常顯示
(2)影響父元素不能正常顯示
四、css盒子模型
border:
border-width:邊框的寬度
border-color:邊框的顏色
border-style:邊框的線型
border-top:上邊框
border-bottom:下邊框
border-left:左邊框
border-right:右邊框
padding:
代表邊框內壁與內部元素之間的距離
padding:10px;代表上下左右都是10px
padding:1px 2px 3px 4px;上右下左
padding:1px 2px;上下/左右
padding:1px 2px 3px;
padding-top:單獨設定
margin:
代表邊框外壁與其他元素之間的距離
margin:10px;代表上下左右都是10px
margin:1px 2px 3px 4px;上右下左
margin:1px 2px;上下/左右
margin:1px 2px 3px;
margin-top:單獨設定
相關文章
- CSS基礎知識總結(4)CSS
- Java基礎知識點總結Java
- ES 基礎知識點總結
- Redis 基礎知識點總結Redis
- 前端知識點總結——JavaScript基礎前端JavaScript
- Flutter 知識點總結-基礎篇Flutter
- Java基礎面試知識點總結Java面試
- python基礎語法知識點總結Python
- CSS知識點面試總結CSS面試
- Java個人知識點總結(基礎篇)Java
- Java基礎知識總結Java
- React 基礎知識總結React
- SpringIOC基礎知識總結Spring
- Rust 基礎知識總結Rust
- 索引基礎知識總結索引
- 後端知識點總結——NODE.JS基礎後端Node.js
- CSS基礎知識CSS
- JS基礎知識深入總結JS
- TCP/IP 基礎知識總結TCP
- JS基礎知識總結(1)JS
- JS基礎知識總結(2)JS
- Java基礎知識總結-1Java
- 30道CSS 面試知識點總結CSS面試
- CSS 基礎知識 初識CSS
- yii2 基礎知識總結
- 演算法基礎知識總結演算法
- Java基礎對反射知識總結Java反射
- 零基礎學習Java,全方位知識點總結!Java
- 知識點總結
- 正規表示式基礎知識總結
- CSS基礎知識簡介CSS
- 、【C語言基礎】 第十天 | 知識點總結C語言
- HTML5與CSS3知識點總結HTMLCSSS3
- Java 知識點總結Java
- django知識點總結Django
- iOS 知識點總結iOS
- MongoDB知識點總結MongoDB
- HDFS知識點總結
- HBase知識點總結