将无序列表置于 DIV 中居中

发布于 2024-12-02 11:54:44 字数 193 浏览 2 评论 0原文

嗯,我正在重新设计我的网站 AlternativeApps.TK,以便用户获得最佳体验。

我有一个名为 devices 的 div,其中包含 Windows 图标、Linux、Mac、Android 和 iOS 设备的图像。设备下方是它们的名字。文本在图标下方居中,但我似乎不知道如何将所有图像和文本水平居中在同一个 div 中,而不是像现在这样垂直向下。

Well I'm in the mix of redesigning my website AlternativeApps.TK so the user gets the best experience.

I have a div called devices which has images of the Windows icon, Linux, Mac, Android, and iOS devices. Under the devices are their names. the text is centered under their icons, but I can't seem to figure out how to center all the images, and text in the same div horizontally, not going down vertically like it is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

为人所爱 2024-12-09 11:54:44

编辑有关水平布局的新信息:

#devices > ul {display: inline-block;}

那里!这就是您需要添加的全部内容。没有令人讨厌的脆性漂浮物。

Edit for new information about horizontal layout:

#devices > ul {display: inline-block;}

There! That's all you need to add. No nasty brittle floats.

走过海棠暮 2024-12-09 11:54:44

好吧,我最初误解了这个问题,试试这个。

#devices{
    margin: 0 auto;
}

ul li{
    float: left;
    margin-left: 10px /* arbitrary value to stop them from hitting eachother */
    text-align : center;
}

然后将您的标记更改为类似的内容

<div id="devices">
    <ul>
        <li> 
            <img src="your image"/>
            <p>your text</p>
        </li>
        <li> ... so on</li>
        <li> ... so on</li>
    </ul>
</div>

Ok I misunderstood the question initially try this instead.

#devices{
    margin: 0 auto;
}

ul li{
    float: left;
    margin-left: 10px /* arbitrary value to stop them from hitting eachother */
    text-align : center;
}

Then change your markup to something like

<div id="devices">
    <ul>
        <li> 
            <img src="your image"/>
            <p>your text</p>
        </li>
        <li> ... so on</li>
        <li> ... so on</li>
    </ul>
</div>
荒岛晴空 2024-12-09 11:54:44
div#devices ul { display:block; float:left; }
div#devices ul { display:block; float:left; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文