Computer >> Computer tutorials >  >> Programming >> Javascript

Usage of border-left-width property in CSS


The border-left-width property changes the width of the left border. You can try to run the following code to implement border-left-width property:

Example

<html>
   <head>
   </head>
   <body>
      <p style = "border-left-width:6px;border-style:solid;">
         This is demo content.
      </p>
   </body>
</html>