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

กำหนดความกว้างของเส้นขอบด้านซ้ายโดยใช้ CSS


หากต้องการกำหนดความกว้างของเส้นขอบด้านซ้าย ให้ใช้ border-left-width คุณสมบัติใน CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน border-left-width ทรัพย์สิน −

ตัวอย่าง

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

ผลลัพธ์

กำหนดความกว้างของเส้นขอบด้านซ้ายโดยใช้ CSS