I've this code
.inline-subtitles {
width:100%;
display:table;
margin:0 auto;
}
.inline-subtitles a {
width:33%;
padding:15px;
background: #ececec;
float:left;
margin-right:10px;
}
<div class="inline-subtitles">
<a href="#">Doc technique</a>
<a href="#">Carnet utilisateur</a>
<a href="#">Nomenclatures</a>
<a href="#">Notice de pose</a>
<a href="#">Notice réglages</a>
</div>
I want these links to be centered into the container .inline-subtitles
.
I try margin: 0 auto;
but it does not work.
Thanks for your help !