首頁  >  文章  >  web前端  >  設定元素的左、右、上、下內邊距

設定元素的左、右、上、下內邊距

PHPz
PHPz轉載
2023-08-25 18:05:021552瀏覽

設定元素的左、右、上、下內邊距

padding 屬性設定元素的左、右、上方、下內邊距。您可以嘗試執行以下程式碼來實作padding屬性。

範例

<html>
   <head>
   </head>
   <body>
      <p style = "padding: 25px; border:2px solid orange;">
         This is a paragraph.
      </p>
      <p style = "padding:20px 4%; border:2px solid red;">
         This is another paragraph.
      </p>
      <p style = "padding: 15px 3% 10px; border:1px solid maroon;">
         Top padding will be 15px, left and right padding will be 3% of the total width of the document, bottom padding will be 10px
      </p>
   </body>
</html>
#

以上是設定元素的左、右、上、下內邊距的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除