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

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

Để đặt đường viền chèn bằng CSS, hãy sử dụng border-style thuộc tính có giá trị chèn.

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