I am trying to position a horizontal line under a group of tags on an app done on asp.net mvc. I believe I have to do that on the CSS but I just can't seem to find the right way to place such line.
Every time I try, the line ends up at the right of the tags and I don't feel like using a whole bunch of
is the right way by far.
<div id="section">
<div style="float:left; margin:20px">
<img alt="Upload" src="/Content/Images/Upload_yellow.png"/>
<img alt="Confirm" src="/Content/Images/Confirm_white.png"/>
<img alt="Review" src="/Content/Images/Review_white.png"/>
</div>
<hr />
</div>
Can somebody orient me in the right direction here?