Aligning DIVs side by side

Uh, oh.

@thatwildhippie, Please read the first sentence of our Posting Guidelines.

Dwell on the part that says “help us help you”.

Minimized code is time consuming to read and evaluate.

as shown in fiddle (minus colors)

<div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt=""><div></div></div><div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt=""><div></div></div><div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt=""><div></div></div>
<div class="clear"></div>

 
after tidy

<div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="imageborder"><img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="clear"></div>

 
manually indented

<div class="imageborder">
    <img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="imageborder">
    <img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="imageborder">
    <img src="https://thatwildhippie.com/wp-content/themes/version1/images/border_bg.png" alt="">
    <div></div>
</div>
<div class="clear"></div>
1 Like