I have two HTML elements inside a div. I want to display them in a row or a horizontal line. Let\'s say I have two images with the code shown below. How would I make it so there
The hack is to set position: relative; on the parent div and
position: relative;
div
position: absolute; top: 0px; left: {left image's computed width}px;
on the second one. Other wise you simple increase the div size.