* {
margin: 0px;
}
#box{
margin-top: 20px;
}
#box ul, div {
display: inline;
/*dont remove this else the new boxes added will make the next one to go down once and then bounce back to the right*/
}
#container {
float: left;
width: 310px;
/*because width of 2 textboxes is 143+143=286+24*/
border: 2px red solid;
min-height: 300px;
list-style-type: none;
padding-left: 20px
/*to prevent horizontal indent of <li>*/
}
#container li {
width: 143px;
display: inline-block; /* don't remove this also */
margin: 2px;
}
#container>li>textarea {
margin-top: 0px;
}
#input {
margin-left: 5px;
width: 143px
}
textarea {
resize: none
}