我的homeWrapperContentRight
存在问题我无法在homeWrapperContentLeft
旁边找到它。当我这样做时,有什么建议我不知道吗?
CSS:
.homeWrapperContentLeft{
width:628px;
height:825px;
clear: both;
}
.homeWrapperContentRight{
float: right;
width:250px;
height:849px;
}
答案 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中运行。希望它有所帮助!