css設定字體顏色:一篇文章帶你了解CSS 文字樣式-字體教程免费ppt模版下载-道格办公

一篇文章帶你了解CSS 文字樣式

大家好,我是IT共享者,人稱皮皮。這篇文章我們來講講CSS的文字樣式。

一、文字顏色Color

顏色屬性用來設定文字的顏色。

顏色是透過CSS最經常的指定:

  • 十六進位值- 如"#FF0000"。
  • 一個RGB值- "RGB(255,0,0)"。
  • 顏色的名稱- 如"紅"。

一個網頁的文字顏色是指在主體內的選擇:

<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640,user-scalable=no"> < ;title>項目</title> <style> body { color: blue; } h1 { color: #00ff00; } h2 { color: rgb(255, 0, 0); }</style> <// head> <body> <h2>hello world</h2> <h1>welcome to CaoZhou</h1> </body></html>

註:對於W3C標準的CSS:如果你定義了顏色屬性,你還必須定義背景色屬性。


二、屬性

1 . text-align 文字的對齊方式

文字排列屬性是用來設定文字的水平對齊方式。

文本可居中或對齊到左或右,兩端對齊。

當text-align設定為"justify",每一行被展開為寬度相等,左,右外邊距是對齊(如雜誌和報紙)。

<!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> ; h1 { 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"> 從前有個書生,和未婚妻約好在某年某月某日結婚。到那一天,未婚妻卻嫁給了別人。書生受此打擊, 一病不起。  這時,路過一遊方僧人,從懷裡摸出一面鏡子叫書生看。書生看到茫茫大海,一名被殺害的女子一絲不掛地躺在海灘上。路過一人, 看一眼,搖搖頭,走了。又經過一人,將衣服脫下,給女屍蓋上,走了。再過一人,過去,挖個坑,小心翼翼把屍體掩埋了。  僧人解釋道, 那具海灘上的女屍,就是你未婚妻的前世。你是第二個路過的人,曾經給他一件衣服。她今生和你相戀,只為還你一個情。但是她最後要報答一生一世的人,是最後那個把她埋起來的人,那人就是他現在的丈夫。書生大悟,病癒。 </p> <p><b>注意:</b> 重置瀏覽器視窗大小查看 "justify" 是如何運作的。 </p> </body></html>

2. text-decoration文字修飾

text-decoration 屬性用來設定或刪除文字的裝飾。

從設計的角度看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> <body> <p>原來的樣子</p> <body> <p>原來的樣子</p> <a href="#" class ="none">wwwwwwwwwwwwwwwwww</a> <p>去掉底線</p> <a href="#" class="del">wwwwwwwwwwwwwww</a> </body>>wwwwwwwwwwwwwwwwww</a> </body>< html>

也可以這樣裝飾文字:

<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640,user-scalable=no"> < ;title>項目</title> <style> h1 { text-decoration: overline; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; }</style> </ head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h2> <h3>This is heading 3</h3); html>

註:不建議強調指出不是連結的文本,因為這常常混淆使用者。


3. text-transform文字轉換

text-transform文字轉換屬性是用來指定在一個文字中的大寫和小寫字母。

  • uppercase :轉換為全部大寫。
  • lowercase:轉換為全部小寫。
  • 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>

4. text-indent文字縮排

text-indent文字縮排屬性是用來指定文字的第一行的縮排。

p {text-indent:50px;}

5. letter-spacing 設定字元間距

增加或減少字元之間的空間。

<style> h1 { letter-spacing:2px;} h2 { letter-spacing:-3px;}</style>

6. line-height設定行高

指定在一個段落中行之間的空間。

<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% 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> This is a paragraph with a smaller line-height.<br> </p> <p class="big"> This is a paragraph with ap> <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> This is a paragraph with a bigger line-height. <br> </p> </body></html>

7. word-spacing 設定字間距

增加一個段落中的單字之間的空白空間。

<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; </head> <body> <p> This is; </head> <body> <p> This is; </head> <body> <p> This 是; some text. This is some text. </p> </body></html>

8. vertical-align 設定元垂直居中

設定文字的垂直對齊影像。

<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>AnAn: <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>

9. text-shadow 設定文字陰影

設定文字陰影。

<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=640,user-scalable=no"> < ;title>專案</title> <style> h1{ text-shadow: 2px 2px #FF0000; }</style> </head> <body> <h1>Text-shadow </head> <body> <h1>Text-shadow </head> <body> <h1>Text-shadow 1>/h 1> ; </body></html>

三、總結

本文主要介紹了CSS文本樣式實際應用中應該如何去操作,透過講解文本中對應的屬性去改變文本的表現形式。使用豐富的效果圖的展示,能夠更直覺的看到運行的效果,並且能夠更好的理解。使用Html語言,程式碼結構更佳的清晰,能夠幫助你更好的學習。

文章為用戶上傳,僅供非商業瀏覽。發布者:Lomu,轉轉請註明出處: https://www.daogebangong.com/zh-Hant/articles/detail/yi-pian-wen-zhang-dai-ni-liao-jie-CSS-wen-ben-yang-shi.html

(810)
打賞 支付宝扫一扫 支付宝扫一扫
single-end

相關推薦