+ 4
image alignment
<center> ...</center> tag works for aligning the image to the center but if i use <right>...</right> nothing happens.please help?
3 odpowiedzi
+ 7
Unfortunately, the <right> tag does not exist in html5, try using <div align = "right"> </ div> or in css "margin-left:value"
+ 6
.img-align-right {
margin-left: calc(100% - 32px);
}
32px would be the width of your image
+ 3
thanks Brains,Donna and alexander sokolov for help