Div Alignment不会排名靠前

时间:2013-04-07 05:19:48

标签: css html alignment

我的homeWrapperContentRight存在问题我无法在homeWrapperContentLeft旁边找到它。当我这样做时,有什么建议我不知道吗?

Live Url

CSS:

.homeWrapperContentLeft{
    width:628px;
    height:825px;
    clear: both;
}

.homeWrapperContentRight{
    float: right;
    width:250px;
    height:849px;
}

3 个答案:

答案 0 :(得分:0)

display: inline添加到.homeWrapperContentLeft,您就完成了。

答案 1 :(得分:0)

试试这个(基于你的CSS):

.homeWrapperContentLeft {
    display: inline-block;
    width:628px;
    height:825px;
}

.homeWrapperContentRight {
    display: inline-block;
    width:250px;
    height:849px;
}

答案 2 :(得分:0)

.homeWrapperContentLeft{
    width:628px;
    height:825px;
    clear: both;
    display: inline;
}

.homeWrapperContentRight{
    float: right;
    width:250px;
    height:849px;
    display: inline
}

我尝试过这些系列并且在Chrome中运行。希望它有所帮助!