Skip to content

Commit

Permalink
feat: add lession 25 center-an-element-horizontally-using-the-margin-…
Browse files Browse the repository at this point in the history
…property
  • Loading branch information
thuongtruong1009 committed May 3, 2022
1 parent 7862b97 commit 60c7635
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lession 25</title>
<style>
div {
background-color: blue;
height: 100px;
width: 100px;
margin: auto;
}
</style>
</head>

<body>
<div></div>
</body>

</html>

0 comments on commit 60c7635

Please sign in to comment.