[Solved] Want to allign image between paragraph


It’s hard to help without some markup, but you can’t float centre, so it would be best to do something like this;

<style>
    .grid-three{
        width:33.33%;
        display:block;
        float:left;
    }
</style>

<p class="grid-three">blah blah...</p>
<img class="grid-three" src="https://stackoverflow.com/questions/35550841/blah" />
<p class="grid-three">blah blah...</p>

This is a very simple configuration – you may want to experiment to get this working in a nicer way responsively.

You could also swap the img for a div containing the image, to allow the image to keep it’s original size, and you could also try applying separate widths (like 40% to each p and 20% to the img block).

Test out some ideas!

0

solved Want to allign image between paragraph