显示:内联在 IE8 中不起作用
我目前正在开发 www.stopsweats.org
菜单需要是水平的。我尝试过对 li
、 ul
甚至 div
标签使用 display:inline
但在 IE8 中确实如此似乎什么也没做。
Firefox 和 Chrome 一如既往地对我很好。
我已经尝试了很多次,但是我错过了什么吗?请指教。
I am currently developing www.stopsweats.org
The menu needs to be horizontal. I have tried using display:inline
for the li
, ul
and even the div
tag but in IE8 it does not seem to do anything.
Firefox and Chrome are being good to me as usual.
I have tried and tried but is there something I have missed out? Please advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
float:left
可以节省display:inline
在 IE 中工作所需的时间。Use
float:left
to save the time need to makedisplay:inline
work with IE.