+ 2
How to have multiple images on the same line (HTML)
Im trying to get multiple pictures on the same line in html with spaces inbetween <img src="CharacterImages/aatrox.png" width="50px" height="50px"> <p class="em">Aatrox Ahri</p> <img src="CharacterImages/Ahri.png" width="50px" height="50px"> Btw this is a league fanpage
3 Answers
+ 6
Ahri???????
+ 3
put this in your css. This will apply for all images and paragraphs, and they'll have 0 margin top and 5 margin on the sides. modify it for your needs
img, p{
display: inline;
margin: 0px 5px;
}
+ 2
Ty sm