Files

19 lines
283 B
Markdown
Raw Normal View History

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
### Solution
2018-10-12 15:37:13 -04:00
```html
<style>
div {
background-color: blue;
height: 100px;
width: 100px;
margin: auto;
}
</style>
<div></div>
```