Firefox CSS nowrap 问题
我正在尝试使用以下代码在我的网站上创建一个水平(无换行符)无序图像列表:
<ul class="ImageSet">
<li>
<img src="blah">
</li>
<li>
<img src="blah">
</li>
<li>
<img src="blah">
</li>
</ul>
在我的 CSS 中,我使用以下规则:
.ImageSet { white-space: nowrap; }
.ImageSet li { display: inline; float: left; height: 100% }
这在 Chrome 中正常工作,但在 Firefox 中不起作用,因为某些原因有人知道为什么吗?
编辑:澄清一下,FF 中的问题是 li 仍然换行。我试图让它们全部出现在从页面最右边缘延伸的一条完整的水平线上。
I'm trying to create a horizontal (no line breaks) unordered list of images on my website using code as follows:
<ul class="ImageSet">
<li>
<img src="blah">
</li>
<li>
<img src="blah">
</li>
<li>
<img src="blah">
</li>
</ul>
In my CSS, I'm using the following rules:
.ImageSet { white-space: nowrap; }
.ImageSet li { display: inline; float: left; height: 100% }
This is working properly in Chrome, but not in Firefox, for some reason does anyone know why?
EDIT: To clarify, the problem in FF is that the li's still wrap. I'm trying to make them all appear in a single, unbroken horizontal line going off the rightmost edge of the page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试删除
float:left
因为display:inline
就足够了Try removing
float:left
asdisplay:inline
should suffice当您浮动 li 时,它们会在到达父容器的末尾(可能是 body 标签)时换行。如果您希望图像从屏幕中消失,您需要设置父容器(ul)的宽度并使用溢出隐藏或自动来获得您想要的效果。
When you float li's they will wrap when they reach the end of their parent container (which could be the body tag). If you are wanting the image to disappear out of the screen you will need to set the width of the parent container (the ul) and use overflow hidden or auto to get your desired effect.