css控制每段首行自動縮排方法

來源:互聯網
上載者:User

text-indent 屬性規定文字區塊中首行文本的縮排。

注釋:允許使用負值。如果使用負值,那麼首行會被縮排到左邊。

注意:在 CSS 2.1 之前,text-indent 總是繼承計算值,而不是聲明值。

將段落的第一行縮排 50 像素:

 代碼如下 複製代碼

p
{
  text-indent:50px;
}

text-indent:2em定義了文本縮排2em,em是相對長度單位,在這裡你設定的字型大小有多大(px),1em就是多大。這段代碼可以控制整個頁面的段落縮排,也可以單獨控制某個盒子(div)內的段落縮排。


以下是定義名稱為content的DIV中的內容,每段首行空兩格

 代碼如下 複製代碼


#content .divcontent p{padding:0px;margin:0px;text-indent:2em;}

注意:所有瀏覽器都支援 text-indent 屬性。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.