我有一个案例,在指定流体margin-top时,例如20%和何时 我水平调整浏览器窗口的大小,边缘顶部增加。这对我来说有点意外。我正在寻找一个快速解决此问题的方法..
<html>
<head>
<title>Make yourself lucky</title>
<meta name="description" content="Make yourself lucky" />
<style type="text/css">
#slideshow {
float: left;
background-color: red;
width: 100px;
height: 100px;
margin-top: 20%;
}
</style>
</head>
<body>
<div id='wrapper'>
<div id='slideshow'>
slideshow
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
尝试将position:absolute
添加到同一个CSS中。