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:outset;">
         This is outset border.
      </p>
   </body>
</html>