html - Bootstrap 3: Alignment of Close Icon -
close icon acting weird.
code
<div class="well sidebar-nav"> <ul class="list-unstyled"> <li>file uploaded</li> <li><a href="#">file 1</a> <button type="button" class="close" aria-hidden="true">×</button></li> <li><a href="#">file 2</a> <button type="button" class="close" aria-hidden="true">×</button></li> <li><a href="#">file 3</a> <button type="button" class="close" aria-hidden="true">×</button></li> </ul> </div>
it's appearing this:
the image 21px tall, li
20px tall (due font) floats overlap. simple , unobtrusive fix set li
height 21px.
you clear
after li
s
Comments
Post a Comment