將我的div放到右下角的最簡單方法是什麼?在div中對齊在CSS中的右下角
<div style="width:200px; height:200px; border:3px #FF6666 solid">
<div style="font-weight:bold; text-align:right;">Krishna</div>
</div>
這是我的代碼..謝謝大家
將我的div放到右下角的最簡單方法是什麼?在div中對齊在CSS中的右下角
<div style="width:200px; height:200px; border:3px #FF6666 solid">
<div style="font-weight:bold; text-align:right;">Krishna</div>
</div>
這是我的代碼..謝謝大家
試試這個,你的設置外div
到position: relative;
確保內部div
將留在它裏面,當設置爲position: absolute;
。然後,您可以通過設置bottom: 0; right: 0;
來指定它坐在右下角。
<div style="width:200px; height:200px; border:3px #FF6666 solid; position: relative">
<div style="font-weight:bold; text-align:right;position: absolute;bottom: 0; right: 0; ">Krishna</div>
</div>
根據div的父母你可以放置它絕對:
<div style="width:200px; height:200px; border:3px #FF6666 solid;position: relative;">
<div style="font-weight:bold; text-align:right;position: absolute; bottom:0; right:0">Krishna</div>
</div>
雖然你需要爲你的內部div設置一個大小... –
我在問內部div ..謝謝 – Krishna
<div style="width:200px; height:200px; border:3px #FF6666 solid; position: relative">
<div style="font-weight:bold; position: absolute;bottom: 0; right: 0; ">Krishna</div>
</div>
在這裏看到:http://jsfiddle.net/9MYFM/
你必須改變position
到absolute
。
小提琴中沒有內部或外部的'div',OP還是要弄清楚使他/她的設置工作。爲什麼這個表決呢? –
謝謝..虐待使用這一個 – Krishna
樂意提供幫助,不要忘記接受答案。 –