I'm trying to organize a table-like setup with my webpage, i wanna move box number 7 here: http://puu.sh/gfekf/ac521ebc89.png and move it below box number 5, what is the display:table property for this?
<div class ="7 boxsubmit">
    <div class ="header">
            <h2>7.Input Type "submit"/"reset"</h2>
        </div>  
         <div class= "border">
            <div class ="spaceSeven">
            </div> 
          </div>
        </form> 
    </div>
   .1 { display:table-header-group;
        border-style: solid;
        margin-left:100px;
          } 
   .2 { display:table-header-group; 
        margin-top: 50px;
    }
   .3{ display:table-header-group; } 
   .4{ display::table-row-group} 
   .5{ display::table-row-group} 
   .6{ display::table-row-group} 
   .7{ display::table-row-group}
}
.boxsubmit{
    margin-top:70px;
    display:table-cell
}
