Programming Code Center(PCC)
[CSS]

(PCC)::[How-to-Use-shorthand-padding-property-with-one-value]::[css]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<style>
div {
  border: 1px solid black;
  padding: 25px;
  background-color: lightblue;
}
</style>
</head>
<body>

<h2>The padding shorthand property - 1 value</h2>

<div>This div element has a top, bottom, left, and right padding of 25px.</div>

</body>
</html>

Output :

The padding shorthand property - 1 value

This div element has a top, bottom, left, and right padding of 25px.