+ 1
How to add multiple images in one single horizontal line?
like one +one+one image s in one line
6 odpowiedzi
+ 2
you can try do it:<table>(also you can use different attribures)
<tr>
<td><img src="1.jpg" alt=""/></td>
<td><img src="2.jpg" alt=""/></td>
<td><img src="3.jpg" alt=""/></td>
</tr>
</table>
0
just insert them side by side in the code & leave them
0
you can use <ul> tag for multiple images in same line
0
Or using a <ol> and <ul> tags
0
Add this style inside <head> section. If your page contains other images, create a class style instead (adjust width according to number of image. 4 images: 23%):
<style>
img {
width:31%;
margin-right 5px;
}
</style>
HTML:
<img src="img.png" alt="">
<img src="img.png" alt="">
<img src="img.png" alt="">
0
thanks all guys!!RESPECT YOU ALL