gpt4 book ai didi

css - 无法对齐标题(容器中的 div 中的 div)

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

我在对齐页眉时遇到问题。我要:http://s16.postimg.org/qhuwpvh5h/site_shot.png它对我来说是这样显示的:http://postimg.org/image/rnerz8reb/

代码:

<div class="banner">

<div id="portfolio"><a href="portfolio.html">portfolio</a></div>

<div id="logo"><a href="index4.html"><img class="logo" src="images/mira-logo2.png" alt="mira-logo"></a></div>

<div id="about"><a href="about.html">about</a></div>

</div>

</div>

CSS: #容器{ margin : 0 auto ; 宽度:100%; 最小高度:100%; position:relative;

#top {
text-align: center;
background-color:#FFF;
text-decoration: none; }

.banner {
margin-top: 14%;
width: 100%;
background-color:#000000;
height: 28px;
text-align: center;
position: absolute;
z-index: 1;
left: 0;
visibility: visible; }

/*Nav Links*/

#portfolio {
text-align: center;
float: left;
font-family: helvetica, arial;
padding-top: 0.5%;
padding-left: 25%;
z-index: 2;
top: 0;
visibility: visible; }

#logo {
text-align: center;
position: fixed;
z-index: 2;
top: 0; }

img.logo {
padding-top: 0.8%;
width: auto;
max-height: 100%; }

#about {
text-align: center;
float: right;
padding-top: 0.5%;
font-family: helvetica, arial;
padding-right: 25%;
position: relative;
z-index: 2;
top: 0;
visibility: visible; }

最佳答案

你的#logofixed。您需要手动将其置于页面中心,方法是:

#logo {
left: 50%;
margin-left: -100px; /* 1/2 of the image width */
position: fixed;
z-index: 2;
top: 0;
}

关于css - 无法对齐标题(容器中的 div 中的 div),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22304367/

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