gpt4 book ai didi

css - 在 HTML 页面上垂直居中
    菜单

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:42 24 4
gpt4 key购买 nike

我的 CSS 经验很少,所以这可能是一个非常初级的问题。我在将 <ul> 垂直居中时遇到问题页面中间的菜单。我尝试了以下方法:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
body, html {
height: 100%;
margin: 0;
padding: 0;
}
div {
width: 100%;
height: 100%;
position: absolute;
display: table;
text-align: center;
vertical-align: middle;
border: 10pt solid black;
}
ul {
display: block;
}
ul li {
display: inline-block;
background-color: yellow;
border: 1pt solid black;
}
</style>
</head>
<body>
<div>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
</div>
</body>
</html>

我做错了什么?

最佳答案

如果你想让你的菜单垂直居中,这样做

Demo

CSS

ul {
position: absolute;
top: 50%;
margin-top: -15px; /* 1/2 of the total height of your ul */
}

如果你想让你的 ul 位于页面的正中央,就这样做吧

Demo 2

CSS

ul {
position: absolute;
top: 50%;
left: 50%;
margin-top: -15px; /* 1/2 of the total height of your ul */
margin-left: -50px; /* 1/2 of the total width of your ul assumed here as -50 */
}

关于css - 在 HTML 页面上垂直居中 <ul> 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13356250/

24 4 0
文章推荐: css -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com