I have 2 divs nested inside a bigger div as
<div id="site-wrapper">
<div id="user1"></div>
<div id="user2"></div>
<div>
The css is
#site-wrapper{
border: 1px solid;
width: 800px;
min-height: 600px;
margin-left: auto;
margin-right: auto;
}
#user1{
border: 1px solid;
width: 200px;
min-height: 100px;
}
#user2{
border: 1px solid;
width: 200px;
min-height: 100px;
}
They are appearing one below the other. How do i get them on the same level at the side of each other.