How do I get rid of white spaces between spans without manipulating the HTML?

前端 未结 4 2013
隐瞒了意图╮
隐瞒了意图╮ 2020-12-19 16:04

This is my code for a drop down menu. I pulled the code from a tutorial that produced this: http://www.webdesigndev.com/wp-content/uploads/2009/07/fancydropdown.html

4条回答
  •  粉色の甜心
    2020-12-19 16:26

    Try setting display: inline-block on the image elements. Spans are supposed to be inline, so the best solution would be to not use spans at all, but since you said don't change the html...

    See how there's no spaces between the images in this fiddle: http://jsfiddle.net/rVTZc/

提交回复
热议问题