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

CSS ??? ???

CSS ??? ???? ???? ??? ??? ?????. ??? ????? ??? ???? ?? ?????. ??? ??? ???? ????? ? ?????.

CSS ??? ??? ??:

1. ??? ???? ??: text-indent:length (?? ??) ??? ? ??

2. ??? ?? ??: ??? ??: ??, ???, ???

3. ?? ??: white-space:nowrap (nowrap? ??? ? ?? ????, ?? ???? ??? ????, ?? ???? ? ??)

4 , ???? ??: ??? ??: (? ??? ? ??? ????, ?? ??? ????, ?? ??? ????, ?? ?? ??)

5. ??? ?? ??: ?? ??: (sub? ???? ?? ??? ????, super? ???? ? ??? ????, ??? ??? ????, text-bottom? ????? ?????)

6, ??? ??: ??? ???? ??? ?????.

? ? ????

??: ? ? ????? ??? ? ?? ???? ???, ?? ???? ??? ?? ?????. ????? ???? ?? ? ? ?? ???? ?? ??? ??? ? ? ????.

[??] ? ??? ??? ? ????.

text-indent

?: <length> ???> ??

???: 0

?? ??: ?? ?? ??(?? ? ??? ?? ??)

??: ?

???: ?? ??? ??? ??

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title> 
<style>
p {text-indent:50px;}
</style>
</head>
<body>
<p>亞冠聯(lián)賽是亞洲最高等級(jí)的俱樂(lè)部賽事,相當(dāng)于歐洲的歐洲冠軍聯(lián)賽及南美洲的南美解放者杯,高于亞足聯(lián)杯和亞足聯(lián)主席杯,
獲得冠軍的球隊(duì)將代表亞洲參加當(dāng)年12月舉行的國(guó)際足聯(lián)世界俱樂(lè)部杯。期待恒大在世俱杯中為中國(guó)足球爭(zhēng)光添彩。</p>
</body>
</html>

?? ??

??: ?? ??? ?? ?? ???? ??? ??? ?? ?????.

??? ??

?: ?? | ??? | ??

???: ??

?? ??: ?? ?? ??(?? ? ??? ?? ??)

??: ?

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>格式</title> 
<style>  
.center  
{  
margin:auto;  
width:70%;  
background-color:#b0e0e6;  
}  
</style>  
</head>  
   
<body>  
<div class="center">  
<p>亞冠聯(lián)賽是亞洲最高等級(jí)的俱樂(lè)部賽事,相當(dāng)于歐洲的歐洲冠軍聯(lián)賽及南美洲的南美解放者杯,高于亞足聯(lián)杯和亞足聯(lián)主席杯,</p>  
<p>獲得冠軍的球隊(duì)將代表亞洲參加當(dāng)年12月舉行的國(guó)際足聯(lián)世界俱樂(lè)部杯。期待恒大在世俱杯中為中國(guó)足球爭(zhēng)光添彩。</p>  
</div>  
</body>  
</html>

??? ??

Text-transform? ?? ???? ??? ???? ? ?????.

text-transform

?: ???(?? ???) | ???) ???) | ????(? ??? ???? ??) | ?? | ??

?? ?: ??

?? ??: ?? ??

??: ?

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>轉(zhuǎn)換</title> 
<style>
p.uppercase {text-transform:uppercase;}
p.lowercase {text-transform:lowercase;}
p.capitalize {text-transform:capitalize;}
</style>
</head>
<body>
<p class="uppercase">hello css</p>
<p class="lowercase">hello css</p>
<p class="capitalize">hello css</p>
</html>

??? ??

??: ??? ??? ??? ?? ?? ???? ? ?????.

[??] ??? ?? ?? ?? ??? ??? ?????

??? ??

?: ?? | [??(??) || centerline)] | ??

???: ??

?? ??: ?? ??

??: ??

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>文本修飾</title> 
<style>
h1 {text-decoration:overline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:underline;}
</style>
</head>
<body>
<h1>這是用來(lái)進(jìn)行文本修飾的</h1>
<h2>這是用來(lái)進(jìn)行文本修飾的</h2>
<h3>這是用來(lái)進(jìn)行文本修飾的</h3>
</body>
</html>


???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS控制文本</title> </head> <style type="text/css"> #one{text-indent:2em;} #two{text-align:center; white-space:pre; text-transform:uppercase;} span{vertical-align:super;} #t2{width:100px; vertical-align:middle;} </style> <body> <p id="one">0.5秒三分絕殺!波特蘭上演波什時(shí)刻 第N次拯救熱火</p> <h1 id="two">玩命暴扣扳平+助攻絕殺三分 <span>熱火</span>太幸運(yùn)有這fkasfjklas fklasdj顆隊(duì)魂</h1> <p>熱火今夜還一功臣必須贊 11分不多但卻分分是金!</p> <p>詹波為小弟惡犯叫屈 當(dāng)事人他都起飛了!肯定假摔</p> <p>斯帥稱(chēng)客戰(zhàn)開(kāi)拓者奧登不打 波什:他很快就可復(fù)出</p> <p id="t2"> 斯帥稱(chēng)客戰(zhàn)開(kāi)拓者奧登不打 波什:他很快就可復(fù)出 </p> </body> </html>