我有一个特定于 Google Chrome 的 CSS 问题。我做了一些研究,但没有人知道如何在没有 Javascript 的情况下修复它,我不想使用它,因为我的元素将来会改变。
代码如下,如果您使用它,您将看到子 div 转到页面的右侧,如果我将相同的顶部位置值添加到父级,它会朝相反的方向移动。
该网站将包含更多内容,我想要一个居中的标题,当您滚动页面时,侧边栏和浮动内容将消失在后面。
<body>
<!--this should not need any css coding till later on after the site is complete-->
<center>
<div class="header_p1">
<img class="header_p1_child" src="header.png"/>
</div>
</center>
而CSS是
.header_p1
{
background: white;
width: 750px;
height: 110px;
margin-bottom: 10px;
}
.header_p1_child
{
float: none;
background: white;
width: 750px;
height: 110px;
position: fixed;
top: 0px;
}