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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -