溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

css中四種頁面編寫樣式的介紹及實(shí)例用法

發(fā)布時(shí)間:2021-09-07 15:38:07 來源:億速云 閱讀:107 作者:chen 欄目:編程語言

這篇文章主要介紹“css中四種頁面編寫樣式的介紹及實(shí)例用法”,在日常操作中,相信很多人在css中四種頁面編寫樣式的介紹及實(shí)例用法問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”css中四種頁面編寫樣式的介紹及實(shí)例用法”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

說明

1、行內(nèi)樣式,編寫css代碼。

即直接在 html中的style屬性里編寫css代碼。

2、內(nèi)嵌樣式,編寫class。

即在 html h中的style標(biāo)簽內(nèi)編寫class,提供給當(dāng)前頁面使用。

3、導(dǎo)入樣式,在內(nèi)聯(lián)樣式中通過@import方法導(dǎo)入。

提供給當(dāng)前頁面使用。

4、外部樣式,使用html中的link標(biāo)簽加載樣式,提供給當(dāng)前頁面使用。

實(shí)例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>案例</title>
<style type="text/css">
/* p{
font-size:24px;
} */
</style>
<link rel="stylesheet" type="text/css" href="案例.css" />
<style type="text/css">
p{
font-size:24px;
}
</style>
</head>
<body>
<div>
<h2 style="font-size:24px;font-family: 楷體;text-align: center">望月懷遠(yuǎn)</h2>
<p id="text1">海上升明月,天涯共此時(shí).</p>
<p>情人怨遙夜,竟夕起相思.</p>
<p>滅燭憐光滿,披衣覺露.</p>
<p>不堪盈手贈(zèng),還寢夢(mèng)佳期.</p>
<p style="text-decoration: underline;">123456</p>
<p style="text-decoration: line-through;">123456</p>
<p style="text-decoration: overline;">123456</p>
<p style="text-direction: rtl;">6 7 8 9</p>
<p style="text-direction: ltr;">9 8 7 6</p>
<p style="text=transform: none;">Welcome To Jiaxing</p>
<p style="text=transform: capitaliza;">Welcome To Jiaxing</p>
<p style="text=transform: uppercase;">welcome to jiaxings</p>
<p style="text=transform: lowercase;">Welcome To Jiaxing</p>
<p style="line-height: normal;">
正常行高<br>
正常行高<br>
正常行高
</p>
 
<p style="line-height: 42px">
42行高<br>
42行高<br>
42行高
</p>
<p stype="letter-spacing: normal;">welcome</p>
<p stype="letter-spacing: 10px">welcome</p>
<p stype="letter-spacing: 10px">66666</p>
<p stype="word-spacing: 500px">行 高</p>
<p stype="word-spacing: normal">行 高</p>
</div>
</body>
</html>

到此,關(guān)于“css中四種頁面編寫樣式的介紹及實(shí)例用法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI