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

กำหนดรูปแบบเค้าร่างเป็นเส้นประด้วย CSS


กำหนดโครงร่าง style เป็นเส้นประ ใช้ outline-style คุณสมบัติที่มีค่า ประ

ตัวอย่าง

<html>
   <head>
   </head>
   <body>
      <p style = "outline-width:6px;outline-style:dashed;">
         This text is having 6px dashed outline.
      </p>
   </body>
</html>