css - button with image at left and text center aligned -
i trying make button image in , text. want image align @ left , text centered. text should centered @ width of whole button , not @ remaining width cause image.
i tried span no success
<a href=#><button class="lightgray-btn rightbuttons"><span class="demoimage"><img class="btnimg" src="..." alt="" /></span><span class="demotext">"some text</span></button></a>
i want avoid background-image:url because in mobile afraid text on image
thank you
this work you.
button { position: relative; padding: 15px 40px; text-align: center; } .btnimg { position: absolute; left: 6px; top: 50%; transform: translatey(-50%); }
<button class="lightgray-btn rightbuttons"> <img class="btnimg" src="http://lorempixel.com/output/food-q-c-27-24-8.jpg" alt="" /> text </button>
Comments
Post a Comment