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

กำหนดเส้นขอบของสิ่งที่ใส่เข้าไปด้วย CSS


ในการตั้งค่าแทรกเส้นขอบด้วย CSS ให้ใช้ border-style ทรัพย์สินมีค่าแทรก

ตัวอย่าง

<html>
   <head>
   </head>
   <body>
      <p style = "border-width:4px; border-style:none;">
         This is a border with none width.
      </p>
      <p style = "border-width:4px; border-style:inset;">
         This is inset border.
      </p>
   </body>
</html>