Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我决定从我的文本/链接更改为导航栏的图像链接,但现在我的图像之间有空格。http://justxp.x10.mx/test/ 我该如何解决这个问题?
#navlinks a { text-decoration: none; float: left; }
设置display为inline-block菜单的链接元素:
display
inline-block
#navlinks a { display: inline-block; /* hack for old IEs */ *display: inline; zoom: 1; }