Computer >> Máy Tính >  >> Lập trình >> Javascript

Thuộc tính đệm CSS

padding thuộc tính đặt phần đệm bên trái, bên phải, trên cùng và dưới cùng của một phần tử.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai padding bất động sản.

<html>
   <head>
   </head>
   <body>
      <p style = "padding: 25px; border:2px solid orange;">
         All four padding will be 25px
      </p>

      <p style = "padding:20px 4%; border:2px solid red;">
         Top and bottom padding will be 20px, left and right padding will be 4% of the total width of the document.
      </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>