css - how to align text and image with in anchor tag -


this sample code in trying position text below image in anchor. have problems if there more elements in html , browser minimized image , text going miss aligned

output-'text' , image , text below image should align'center' , should stay aligned if browser minimized.

<head>   <style type="text/css">     .cimg {       width:100%;        text-align:center;     }     .cimga {       display:block;       margin-top:5%;     }     .cimgimg {       position:absolute;       top:10px;       bottom:0px;       right:48%          }   </style> </head> <html> <body>   <div class="cimg">text</duiv>   <div class="cimg">     <a >       imagetag/call     </a>   </div> </body> </html> 

your widths, paddings, , margins need in pixels.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -