/* ------------------------------------------------------------ * Name : admin.css * Desc : Admin StyleSheet * Created : 2016/9/11 Tri-aBility by Junheum,Choi * Updated : ------------------------------------------------------------ */ * { font-size: 14px; } div.layout { height: 100vw; /* 화면 넓이의 100% */ height: 100vh; /* 화면 높이의 100% */ border: 1px solid red; background-color: #efefef; /* border:1px solid blue; */ } div.layout > div.row > div.head { height: 51px; border: 1px solid blue; background-color: #e3f2fd; } div.layout > div.row > div.tail { height: 51px; position: fixed; bottom: 0; left: 0; width: 100%; background-color: lightgray; text-align: center; padding: 10px; } div.layout > div.row > div.left_menu { padding-left: 10px; border: 1px solid green; } div.layout > div.row > div.content > div.header { /*content 헤더라인*/ height: 50px; background-color: #e7e7e7; } div.layout > div.row > div.content > div.header > ul.nav { /*nav-tabs 헤더라인*/ border-top: 1px solid red; border-left: 1px solid red; border-right: 1px solid red; border-radius: 10px 10px 0px 0px; } div.layout > div.row > div.content > div.center { /*content 부분*/ height: 100%; padding: 10px; /* border: 1px solid red; */ border-left: 1px solid red; border-right: 1px solid red; background-color: sivler; } div.layout > div.row > div.content div.footer { /*content 하단라인*/ height: 20px; border-bottom: 1px solid red; border-radius: 0px 0px 10px 10px; }