本文介绍了如何在另一个div内设置div的位置到右下角?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

html

<div style="width:50%;overflow:hidden">
        <div id="inboxHeader">
                    <div id="inboxCount"><p>Earth</p></div>

        </div>
    </div>

css

#inboxHeader{
        background-color:yellow;
        height :300px;
        position: relative;
    }

    #inboxCount{
        position: absolute;
        bottom: 0;
        float:right;
    }

地球 左下角角落。那么如何将它转移到右下角角?

Earth is in the bottom left corner. So how can I shift it to the bottom right corner?

推荐答案

设置右:0 而不是 float:right

这篇关于如何在另一个div内设置div的位置到右下角?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 02:25