猿问

高度设置成100%,背景颜色不现实,设置成像素可以显示,帮看看哪里出错了

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style>

    body{

     width: 100%;

     height: 100%;

     background: green;

     z-index: 1;

    }

.wrap{

width: 100%;

height: 100%;

position: relative;

z-index: 3;

background: red;

}

.top{

width: 100px;

height: 50px;

position: absolute;top: 10%;left: 10%;

background: blue;

}

</style>

</head>

<body>

<div class="wrap">

<div class="top"></div>

<div class="bottom"></div>

</div>

</body>

</html>


慕用3581678
浏览 1616回答 2
2回答

CodeManDSH

html{     height:100%; }

西兰花伟大炮

加一个 body,html{}
随时随地看视频慕课网APP
我要回答