Computer >> Computer tutorials >  >> Programming >> CSS

Specify the left padding of an element with CSS


The padding-left specifies the left padding of an element. It sets the left padding of an element. This can take a value in terms of length of %.

Eaxmple

 <html>
    <head>
    </head>
    <body>
       <p style = "padding-left: 20px; border:2px solid blue;">
          This is demo content.
       </p>
       <p style = "padding-left: 20%; border:2px solid blue;">
          This is another demo content.
       </p>
    </body>
</html>