CSS的CSS中的text-align屬性怎麼用屬性可用來設定文字的位置,接下來的這篇文章將跟大家介紹關於CSS中的CSS中的text-align屬性怎麼用屬性的用法,下面我們來看具體的內容。
我們先來看一段簡單的程式碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="sample.css" type="text/css"> </head> <body> <p class="sample1">在此处显示文字</p> </body> </html>
效果如下
接著我們基於上述的程式碼來使用CSS中的text-align屬性怎麼用屬性
如果我要將文字放在左側(預設值是左),我們可以這樣寫
p.sample1 {CSS中的text-align屬性怎麼用:left; }
由於預設是左,所以文字位置沒有變化,仍然在左邊
#將文字放在右側##
p.sample1 {CSS中的text-align屬性怎麼用:right; }
p.sample1 {CSS中的text-align屬性怎麼用:center; }
p.sample1 { CSS中的text-align屬性怎麼用:justify ; text-justify:auto ; }
以上是CSS中的text-align屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!