Add the text-align
css property to its parent style attribute
Eg:
<div style="text-align:center">
<a href="http://www.example.com">example</a>????????????????????????????????????
</div>?
Or using a class (recommended)
<div class="my-class">
<a href="http://www.example.com">example</a>????????????????????????????????????
</div>?
.my-class {
text-align: center;
}
See below working example:
.my-class {
text-align: center;
background:green;
width:400px;
padding:15px;
}
.my-class a{text-decoration:none; color:#fff;}
<!--EXAMPLE-ONE-->
<div style="text-align:center; border:solid 1px #000; padding:15px;">
<a href="http://www.example.com">example</a>????????????????????????????????????
</div>?
<!--EXAMPLE-TWO-->
<div class="my-class">
<a href="http://www.example.com">example</a>????????????????????????????????????
</div>?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…