0
Haw i put i picture in center plz
...
3 Antworten
+ 3
using align attributes is not a good semantic usage..
so please use css for styling purpose..
to center your picture use css as:
img{
display:block;
margin:0 auto;
}
+ 2
<p align = 'center'>
<img src = 'image.jpg' />
</p>
0
thanks