2015-06-22 218 views
0

我只是想要一點幫助。我想將我的div元素從顯示器的最右下方移到大約25%的頂部。下面的CSS代碼是否正確?將元素放置到特定位置

.positioning { 
    vertical-align: bottom; 
    text-align: right; 
} 

HTML代碼

<div class="positioning"> 
    //Content 
</div> 

回答

0

.positioning { 
 
    position: absolute; 
 
    right: 0; 
 
    bottom: 25%; 
 
}
<div class="positioning"> 
 
    25% top from Right bottom 
 
</div>

+0

由於馬諾,這是有幫助的。 –

+0

歡迎Akash! :) –