您好,登錄后才能下訂單哦!
CSS中有哪些文本樣式,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
顏色屬性被用來設(shè)置文字的顏色。
顏色是通過CSS最經(jīng)常的指定:
十六進制值 - 如"#FF0000"。
一個RGB值 - "RGB(255,0,0)"。
顏色的名稱 - 如"紅"。
一個網(wǎng)頁的文本顏色是指在主體內(nèi)的選擇:
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> body { color: blue; } h2 { color: #00ff00; } h3 { color: rgb(255, 0, 0); } </style> </head> <body> <h3>hello world</h3> <h2>welcome to CaoZhou</h2> </body> </html>
注:對于W3C標準的CSS:如果你定義了顏色屬性,你還必須定義背景色屬性。
文本排列屬性是用來設(shè)置文本的水平對齊方式。
文本可居中或?qū)R到左或右,兩端對齊。
當(dāng)text-align設(shè)置為"justify",每一行被展開為寬度相等,左,右外邊距是對齊(如雜志和報紙)。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> h2 { text-align: center; } p.date { text-align: right; } p.main { text-align: justify; } </style> </head> <body> <p class="date">2015 年 3 月 14 號</p> <p class="main"> 從前有個書生,和未婚妻約好在某年某月某日結(jié)婚。到那一天,未婚妻卻嫁給了別人。書生受此打擊, 一病不起。這時,路過一游方僧人,從懷里摸出一面鏡子叫書生看。書生看到茫茫大海,一名遇害的女子一絲不掛地躺在海灘上。路過一人, 看一眼,搖搖頭,走了。又路過一人,將衣服脫下,給女尸蓋上,走了。再路過一人,過去,挖個坑,小心翼翼把尸體掩埋了。僧人解釋道, 那具海灘上的女尸,就是你未婚妻的前世。你是第二個路過的人,曾給過他一件衣服。她今生和你相戀,只為還你一個情。但是她最終要報答一生一世的人,是最后那個把她掩埋的人,那人就是他現(xiàn)在的丈夫。書生大悟,病愈。 </p> <p><b>注意:</b> 重置瀏覽器窗口大小查看 "justify" 是如何工作的。</p> </body> </html>
text-decoration 屬性用來設(shè)置或刪除文本的裝飾。
從設(shè)計的角度看 text-decoration屬性主要是用來刪除鏈接的下劃線:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .none {} .del { text-decoration: none; } </style> </head> <body> <p>原來的樣子</p> <a href="#" class="none">wwwwwwwwwwwwwwwwww</a> <p>去掉下劃線</p> <a href="#" class="del">wwwwwwwwwwwwwwwwwwwww</a> </body> </html>
也可以這樣裝飾文字:
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> h2 { text-decoration: overline; } h3 { text-decoration: line-through; } h4 { text-decoration: underline; } </style> </head> <body> <h2>This is heading 1</h2> <h3>This is heading 2</h3> <h4>This is heading 3</h4> </body> </html>
注:不建議強調(diào)指出不是鏈接的文本,因為這常常混淆用戶。
text-transform文本轉(zhuǎn)換屬性是用來指定在一個文本中的大寫和小寫字母。
uppercase:轉(zhuǎn)換為全部大寫。
lowercase:轉(zhuǎn)換為全部小寫。
capitalize :每個單詞的首字母大寫。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } p.capitalize { text-transform: capitalize; } </style> </head> <body> <p class="uppercase">This is some text.</p> <p class="lowercase">This is some text.</p> <p class="capitalize">This is some text.</p> </body> </html>
text-indent文本縮進屬性是用來指定文本的第一行的縮進。
p {text-indent:50px;}
增加或減少字符之間的空間。
<style> h2 { letter-spacing:2px; } h3 { letter-spacing:-3px; } </style>
指定在一個段落中行之間的空間。
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> p.small { line-height: 70%; } p.big { line-height: 200%; } </style> </head> <body> <p> This is a paragraph with a standard line-height.<br> This is a paragraph with a standard line-height.<br> The default line height in most browsers is about 110% to 120%.<br> </p> <p class="small"> This is a paragraph with a smaller line-height.<br> This is a paragraph with a smaller line-height.<br> This is a paragraph with a smaller line-height.<br> This is a paragraph with a smaller line-height.<br> </p> <p class="big"> This is a paragraph with a bigger line-height.<br> This is a paragraph with a bigger line-height.<br> This is a paragraph with a bigger line-height.<br> This is a paragraph with a bigger line-height.<br> </p> </body> </html>
增加一個段落中的單詞之間的空白空間。
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style type="text/css"> p { word-spacing: 30px; } </style> </head> <body> <p> This is some text. This is some text. </p> </body> </html>
設(shè)置文本的垂直對齊圖像。
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> img{ width: 200px; height: 100px; } img.top { vertical-align: text-top; } img.bottom { vertical-align: text-bottom; } </style> </head> <body> <p>An <img src="img/logo.png" /> image with a default alignment.</p> <p>An <img class="top" src="img/logo.png" /> image with a text-top alignment.</p> <p>An <img class="bottom" src="img/logo.png" /> image with a text-bottom alignment.</p> </body> </html>
設(shè)置文本陰影。
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640, user-scalable=no"> <title>項目</title> <style> h2{ text-shadow: 2px 2px #FF0000; } </style> </head> <body> <h2>Text-shadow effect</h2> </body> </html>
看完上述內(nèi)容,你們掌握 CSS中有哪些文本樣式的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。