0
How to add three images spaced separately in one line
I'm trying to have three images; left, center, and right of a page, all on one line. Also want to caption each, would the same code apply to paragraphs as well?
1 Answer
+ 2
Try something like this:
<div style="display:inline-block;width:30%;">
<img alt="TEST" />
</div>
<div style="display:inline-block;width:30%;">
<img alt="TEST" />
</div>
<div style="display:inline-block;width:30%;">
<img alt="TEST" />
</div>
That should be fine for <p> too