我有两个div,一个高于另一个,我想要的是将第一个高于另一个。

#bottom {
    overflow-x:scroll ;
    overflow-y: hidden;
    white-space: nowrap;
    position:fixed;
    height:45px;
    width:864px;
    background-color:yellow;
    bottom:0px;
    margin-left:144px;
}
.box {
display: inline-block;
cursor: pointer ;
vertical-align: middle;
width:200px; height:525px;
background:blue;
left:144px;
margin-right: 16px
}

最佳答案

您不能仅使用CSSHTML
您可以使用jQuery:

$('#whereToPut').appendTo('#whatToPut');

08-17 12:11