I'm having trouble centering a section in CSS. If you need more information let me know.
I already tried text-align: center
;
CSS code:
#example{
margin: auto;
max-width: 1000px;
}
HTML
<section id="example">
<br>
<hr>
<div class="icon">
<img src="Other/icon.png">
New icon
</div>
<hr>
<br>
<a href="http://google.com" id="example">
<div class="box">
<div class="boximg" >
<img src="./alt/logo.png">
</div>
<div class="text">
<p>Logo</p>
</div>
</div>
</a>
</section>
I hope someone can help.