gpt4 book ai didi

html - 在 div 中对齐 ul

转载 作者:行者123 更新时间:2023-11-28 15:55:27 25 4
gpt4 key购买 nike

谁能帮我在 div 中对齐我的 ul,这样它就会在 div 的底部对齐。

<div id="metanav_top">
<ul class="metanav">
<li>Entry 1</li>
<li>Entry 2</li>
<li>Entry 3</li>
</ul>
</div>​

请看我的fiddle .

非常感谢您的帮助!

最佳答案

你应该 learn about the position property在 CSS 中。没有它,您将走不远。

#metanav_top {
position: relative;
}

ul.metanav {
position: absolute;
bottom: 0; left: 0;
}

jsFiddle Demo

关于html - 在 div 中对齐 ul,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11892283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com