Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
p.one {
    border: 1px solid red;
    background-color: yellow;
    padding: 50px 30px 50px 80px;
}

</style>
</head>
<body>

<h2>Using The padding Shorthand Property:</h2>

<p>This is a paragraph with no specified padding.</p>
<p class="one">This paragraph has a top and bottom padding of 50px, a left padding of 80px, and a right padding of 30px.</p>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy