CSS中,我們可以使用position屬性來設(shè)置元素的位置,如果你想要讓某個元素靠右下角,你可以使用position:absolute;right:0;bottom:0;來設(shè)置,這樣,該元素就會定位到其父元素的右下角。
下面是一個具體的例子:
HTML代碼:
<div class="container"> <div class="element"></div> </div>
CSS代碼:
.container { position:relative; width:200px; height:200px; } .element { position:absolute; right:0; bottom:0; width:50px; height:50px; background-color:red; }
在這個例子中,我們設(shè)置了一個200px*200px的容器,并在其中放置了一個50px*50px的紅色方塊,通過position:absolute;right:0;bottom:0;的設(shè)置,這個方塊會定位到容器的右下角,你可以看到,方塊的位置是相對于容器而言的,而不是整個頁面,如果你想要讓方塊相對于整個頁面來定位,你可以使用position:fixed;right:0;bottom:0;來設(shè)置。