我有一种情况,当指定一个流动的边距顶部(例如 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>