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

คุณสมบัติเค้าร่าง CSS


The เค้าร่าง คุณสมบัติ เป็นคุณสมบัติชวเลขที่ให้คุณระบุค่าสำหรับคุณสมบัติหลาย ๆ อย่าง เช่น สี สไตล์ ความกว้างของเค้าร่าง

ตัวอย่าง

<html>
   <head>
   </head>
   <body>
      <p style = "outline:thin solid green;">
         This text is having thin solid freen outline.
      </p>
      <br />
      <p style = "outline:thick dashed #009900;">
         This text is having thick dashed green outline.
      </p>
      <br />
      </p>
   </body>
</html>