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

การใช้คุณสมบัติ margin-bottom ด้วย CSS


ขอบล่าง ระบุระยะขอบด้านล่างขององค์ประกอบ สามารถมีค่าความยาว % หรืออัตโนมัติ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อกำหนดระยะขอบด้านล่าง:

ตัวอย่าง

<html>
   <head>
   </head>
   <body>
      <p style = "margin-bottom: 20px; border:2px solid red;">
         This is a paragraph with a specified bottom margin .
      </p>
      <p style = "margin-top: 20%; border:2px solid green;">
         This is another bottom with a specified top margin in percent
      </p>
   </body>
</html>