随着浏览器宽度的增加,固定液边缘顶部会增加

时间:2013-02-19 06:32:18

标签: css fluid

我有一个案例,在指定流体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>

http://jsfiddle.net/eVfCc/

1 个答案:

答案 0 :(得分:0)

尝试将position:absolute添加到同一个CSS中。