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

Đặt đường viền Outset bằng CSS

Để đặt đường viền ban đầu bằng CSS, hãy sử dụng border-style tài sản có giá trị ban đầu.

Ví dụ

<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>