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

Đặt chiều rộng của đường viền bên trái bằng CSS

Để đặt chiều rộng của đường viền bên trái, hãy sử dụng border-left-width thuộc tính trong CSS. Bạn có thể thử chạy mã sau để triển khai border-left-width tài sản -

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            border-style: dashed;
            border-left-width: 10px;
         }
      </style>
   </head>
   <body>
      <p>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text.</p>
   </body>
</html>

Đầu ra

Đặt chiều rộng của đường viền bên trái bằng CSS