亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS ??? ? ?? ???

CSS ??? ? ?? ???

?? ??? ???? ?? ???? ???? ??? ??? ???? ??? ? ?? ???? ??? ???? ??? ? ?? ??? ? ??? ?????. ?? ???? ?? ??? ???? ??? ??? ????.

?? ?? ???? CSS

?? ???? ???? ??? ???? ???? ????. ????? ??? ???? ??? ?? ????.

h1{color:green;}
h2{color:green;}
p{color:green;}

??? ?????? ???? ???? ??? ? ????.
? ???? ??? ?????.
?? ???? ? ??? ?? ???? ???? ?????.

h1,h2,p{color:green;}

?? ???

?? ???? ? ?? ???? ?????.

?? p ??? ?? ??? ??

class="marked"? ???? ?? ??? ?? ??? ??

class="marked" ??

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
p{  
  color:blue;    text-align:center;}
.marked{    background-color:red;}
.marked p{    color:white;}
</style>
</head>
<body>
<p>這個(gè)段落是藍(lán)色文本,居中對(duì)齊。</p>
<div class="marked">
<p>這個(gè)段落不是藍(lán)色文本。</p>
</div>
<p>所有 class="marked"元素內(nèi)的 p 元素指定一個(gè)樣式,但有不同的文本顏色。</p>
</body>
</html>


?? ?? p ??? ???? ?????.

???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p{ color:blue; text-align:center;} .marked{ background-color:red;} .marked p{ color:white;} </style> </head> <body> <p>這個(gè)段落是藍(lán)色文本,居中對(duì)齊。</p> <div class="marked"> <p>這個(gè)段落不是藍(lán)色文本。</p> </div> <p>所有 class="marked"元素內(nèi)的 p 元素指定一個(gè)樣式,但有不同的文本顏色。</p> </body> </html>