我已经包含了我正在使用的代码和示例图像,以更好地解释我想要做什么
<style>
body {
border: 5px double black;
font-family: Courier;
text-align:center;}
.homepage {
width: 75%;}
.logo { /*the image that you are seeing being sent behind the text*/
width: 150px;
}
#header { /*the id of the div that is has the class="img" file nested*/
display:block;
margin:auto;
border-bottom: 2px solid black
}
#intro {
position:relative;}
</style>
这是我目前拥有的,但希望bottom-border
它上面的所有内容都处于固定位置,所以当我向下滚动时,它会保持“粘”在页面上。
这就是我放入选择器时得到position:fixed;
的.logo
。
我才学 HTML/CSS 几天,还没有完全理解要不要使用display
,position
在不同的情况下,在 Codecademy 的课程中,我也学会了这个z-index
工具。我不知道我想要构建的解决方案是什么。