Firefox CSS nowrap 问题

发布于 2024-10-19 02:00:13 字数 565 浏览 5 评论 0原文

我正在尝试使用以下代码在我的网站上创建一个水平(无换行符)无序图像列表:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

星星的轨迹 2024-10-26 02:00:13

尝试删除 float:left 因为 display:inline 就足够了

Try removing float:left as display:inline should suffice

许一世地老天荒 2024-10-26 02:00:13

当您浮动 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文