<!-- 3.字體屬性 -->
<style>
body {
font-family: "Microsoft Yahei", "Arial";
font-size: 14px;
font-weight: normal;
color: rgba(0,0,0,0.5);
text-align: center;
text-decoration: underline;
text-decoration: none;
/* 首行縮進0 */
text-indent: 30px;
}
</style>
<!-- 5.邊框屬性 -->
<style>
div.c2 {
height: 200px;
width: 300px;
background-color: pink;
/* 邊框屬性:邊框寬度 邊框樣式 邊框顏色 */
border: 1px solid red;
border-left: 1px solid green;
/* 順序是上,右,下,左 */
margin: 5px 10px 15px 20px;
}
.div1 {
background-color: red;
display: none;
/* 把塊級標籤轉換爲內聯標籤 */
display: inline;
}
.span1 {
background-color: pink;
/* 把內聯標籤轉換爲塊級標籤 */
display: block;
}
/* 改變ul的方向 */
ul {
/* 清除ul的小圓點 */
list-style-type: none;
}
li {
/* 改變方向 */
display: inline;
padding: 20px;
/*border-right: 1px solid #666;*/
}
li.last {
/* 改變最後一個li的樣式 */
border-right: none;
}
li>a {
border-right: 1px solid red;
padding-right: 15px;
}
</style>
<!DOCTYPE html>
<html>
<head>
<title>解決父標籤塌陷的問題</title>
<style>
* {
margin: 0;
padding: 0;
border:1px solid red;
}
.c1,
.c2 {
height: 100px;
width: 100px;
float: left;
}
/* d1的最後再加一個僞div */
#d1:after {
content: "";
/* 這句話的意思是左邊不能有浮動元素 */
clear: left;
}
</style>
</head>
<body>
<div class="d1">
<div class="c1">我是c1</div>
<div class="c2">我是c2</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>僞類選擇器</title>
<!-- 1.僞類選擇器 -->
<style>
a:link {color: orange;}
a:visited {color: green;}
a:hover {color: red;}
a:active {color: pink;}
input:focus {
outline: none;
background-color: red;
}
</style>
<!-- 2.僞元素選擇器 -->
<style>
p:first-letter {
color: red;
}
p:before {
content: '*';
color: blue;
}
p:after {
content: "[?]";
color: blue;
}
</style>
<!-- 3.字體屬性 -->
<style>
body {
font-family: "Microsoft Yahei", "Arial";
font-size: 14px;
font-weight: normal;
color: rgba(0,0,0,0.5);
text-align: center;
text-decoration: underline;
text-decoration: none;
/* 首行縮進0 */
text-indent: 30px;
}
</style>
<!-- 4.背景屬性 -->
<style>
div.c1 {
width: 600px;
height: 400px;
background-color: pink;
background-repeat: no-repeat;
/* 若是設置圖片不重複而又鋪不滿時,
能夠經過position屬性來設置位置 */
background-position: 50% 50%;
/* 下面是簡寫 */
background: pink url("") no-repeat 50% 50%;
}
</style>
<!-- 5.邊框屬性 -->
<style>
div.c2 {
height: 200px;
width: 300px;
background-color: pink;
/* 邊框屬性:邊框寬度 邊框樣式 邊框顏色 */
border: 1px solid red;
border-left: 1px solid green;
/* 順序是上,右,下,左 */
margin: 5px 10px 15px 20px;
}
.div1 {
background-color: red;
display: none;
/* 把塊級標籤轉換爲內聯標籤 */
display: inline;
}
.span1 {
background-color: pink;
/* 把內聯標籤轉換爲塊級標籤 */
display: block;
}
/* 改變ul的方向 */
ul {
/* 清除ul的小圓點 */
list-style-type: none;
}
li {
/* 改變方向 */
display: inline;
padding: 20px;
/*border-right: 1px solid #666;*/
}
li.last {
/* 改變最後一個li的樣式 */
border-right: none;
}
li>a {
border-right: 1px solid red;
padding-right: 15px;
}
</style>
</head>
<body>
<div class="div1">div</div>
<span class="span1">span</span>
<span class="span2">span</span>
<ul>
<li><a href="">手機</a></li>
<li><a href="">電腦</a></li>
<li class="last"><a href="">服裝</a></li>
</ul>
</body>
</html>