Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt kiểu đường cho đường viền bằng CSS


outline-style thuộc tính chỉ định kiểu cho dòng bao quanh một phần tử.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai outline-style tài sản -

<html>
   <head>
   </head>
   <body>
      <p style = "outline-width:thin; outline-style:solid;">
         This text is having thin solid outline.
      </p>
      <br />
      <p style = "outline-width:thick; outline-style:dashed;">
         This text is having thick dashed outline.
      </p>
      <br />
      <p style = "outline-width:5px;outline-style:dotted;">
         This text is having 5x dotted outline.
      </p>
   </body>
</html>