Skip to content

Commit

Permalink
Create Added _new _css _padding.html
Browse files Browse the repository at this point in the history
fix issue OpenGenus#6724
  • Loading branch information
Subhadip956425 committed Oct 18, 2023
1 parent a969b71 commit ec081fd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Added _new _css _padding.html
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<style>
.container {
background-color: lightblue;
padding: 20px;
}

.unique-padding {
background-color: lightgreen;
padding: 10px 20px 30px 40px;
}
</style>
</head>
<body>

<div class="container">
<p>This is a paragraph inside a div with a class of "container". The div has a padding of 20 pixels.</p>

<div class="unique-padding">
<p>This is a paragraph inside a div with a class of "unique-padding". The div has a unique padding of 10px 20px 30px 40px.</p>
</div>
</div>

</body>
</html>

0 comments on commit ec081fd

Please sign in to comment.