请参阅下面的HTML和CSS。
当取消注释h1标签时,会在页面中添加滚动条,但我不知道原因。我怀疑它是因为这些卡片有position:fixed
,但除了title
之外,我不知道如何让它们看起来像其他任何方式。
我希望card-conveyor-belt
div占据屏幕的20%,而<body>
<div class="title">
<!--
<h1>
HELLO
</h1>-->
</div>
<div class="card-conveyor-belt">
<div class="card left"></div>
<div class="card center"></div>
<div class="card right"></div>
</div>
</body>
div占据屏幕的80%,无论其内容如何。我怎么能这样做呢?
HTML:
html,body{
height:100%;
margin:0;
padding:0;
background-color:#ccc;
}
.title{height: 20%;width: 100%;}
.card-conveyor-belt{
height: 80%;
width: 100%;
}
.card{
position:fixed;
width:80%;
height:80%;
background-color:white;
border-radius:5px;
}
.center{
left:10%;
}
.left{
left:-78%;
}
.right{
left:98%;
}
CSS
{{1}}
Here is the same code in a jsfiddle如果您想要与之互动或互动。
答案 0 :(得分:0)
答案 1 :(得分:0)