2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Center an Element Horizontally Using the margin Property
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Center an Element Horizontally Using the margin Property
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
---
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-03-09 19:31:39 +05:30
|
|
|
```html
|
|
|
|
<style>
|
|
|
|
div {
|
|
|
|
background-color: blue;
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div></div>
|
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
</details>
|