2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Center an Element Horizontally Using the margin Property
|
|
|
|
---
|
|
|
|
## Center an Element Horizontally Using the margin Property
|
|
|
|
|
2019-03-09 19:31:39 +05:30
|
|
|
### Solution
|
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>
|
|
|
|
```
|