作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道当有人放大或缩小时如何阻止底部文本四处移动。页面的其余部分到目前为止保持静止,但因为我不得不使用 position:absolute 来使这个特定部分停留在另一个 div(内容)的底部,它现在移动了。
#content {
border: 2px solid;
border-radius: 10px;
border-color:#ffffff;
box-shadow: 3px 3px 3px #999999;
}
#bottomsectioncontainer {
position:absolute;
bottom:0;
padding-left:200px;
padding-right:275px;
}
<div id="container2" style="width:1300px; height;975px; margin:auto">
<div id="content" style="background-color:#ffffff; height:975px";>
<!---content--->
<div id="bottomsectioncontainer" style="height: 5px; margin:auto;">
<div id="bottom1" style="width: 250px; float:left">
<h4 class="h4"> Example </h4>
<p class=bottompara>One thing <br>
Two Thing<br>
Three thing<br>
Four Thing<br>
Five Thing<br>
</p>
</div>
<div id="bottom2" style="width: 250px;float:left">
<h4 class="h4"> Example </h4>
<p class=bottompara>One thing <br>
Two Thing<br>
Three thing<br>
Four Thing<br>
Five Thing<br>
</p>
</div>
<div id="bottom3" style="width: 250px; float:left;">
<h4 class="h4"> Example </h4>
<p class="bottompara">One thing <br>
Two Thing<br>
Three thing<br>
Four Thing<br>
Five Thing<br>
</p>
</div>
</div>
</div>
</body>
</html>
最佳答案
position:relative;
在 #content
中它会解决这个问题
同时从 bottomcontainer 中移除 height:5px
关于html - 缩放时如何使我的绝对底部容器保持静止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25644629/
有没有办法让天空/湖泊背景在你滚动时保持静止? Site 最佳答案 在 CSS 中: background-attachment: fixed http://www.w3schools.com/css
我正在研究 CSS 网格,我遇到了一些奇怪的事情。我想要 3 列:1 和 3 的宽度为 150px,其余为 2。我认为这应该是可能的,但这没有用: grid-template-columns: 150
我正在使用 -webkit-appearance 和 -moz-appearance 这样我就可以为我的单选按钮设置不同的样式。当我在 Chrome 中执行此操作时,我得到了我想要的: 当我为 Fir
我是一名优秀的程序员,十分优秀!