0

如何将 div 元素绝对定位在 bottom='0px' ?我创建了一个按钮(div 标签)。但我只能通过定位它。最佳。

例子:

<html>
    <body>
        <div style="position:absolute;
                    width:20px;
                    height:20px;
                    background-color:red;
                    right:0px;
                    bottom:0px">
        </div>     
    </body>
</html>​

这与 Web 浏览器的右下角完全垂直对齐。但我无法让它在 WP7 Web 控件中工作

4

1 回答 1

0

bottom是相对于身体的,所以你必须给身体一些高度。

你可以在这里看到它的工作原理:http: //jsfiddle.net/jfriend00/VL8Gg/

于 2012-10-01T04:15:48.397 回答