Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ระบุการเติมด้านขวาขององค์ประกอบด้วย CSS


The padding-right ระบุช่องว่างภายในด้านขวาขององค์ประกอบ ค่านี้สามารถมีค่าเป็น % ได้

ตัวอย่าง

 <html>
    <head>
    </head>
    <body>
       <p style = "padding-right: 20px; border:2px solid blue;">
          This is demo content.
       </p>
      <p style = "padding-right: 20%; border:2px solid blue;">
         This is another demo content/
      </p>
    </body>
</html>