html - Image is not coming in center with applying the css to it -
i want make image in center not able aspx code is
<figure class="centercarosal"> <img src="uimages/<%#eval("logo") %>" style="height: 100px" alt=""> </figure>
and class centercarosal
.centercarosal{ text-align:center!important }
i think missing browser specification both please try this
.centercarosal { text-align: -moz-center; }
Comments
Post a Comment