Having trouble aligning text under 3 images in a row? All the solutions I've come across end up stacking the images vertically instead of horizontally.
HTML:
<div id="SecondFooter" class="responsiveColumn">
<a href="link here" target="_blank"><img src="img.jpg"></a>
<a href="link here" target="_blank"><img src="img.jpg"></a>
<a href="link here" target="_blank"><img src="img.jpg"></a>
</div>
CSS:
#SecondFooter {
width: 600px;
background-color: #ffffff;
color: #000000;
font-family: arial,helvetica,sans-serif;
font-size: 11px;
text-align: center;
}
#SecondFooter img{
display: inline-block;
width: 155px;
height: 155px;
padding: 5px;
margin: 0;
}
Attempts with figures and figcaption have been made. Splitting each image into its own div only ends up stacking everything vertically. The goal is to maintain a horizontal alignment.