티스토리 뷰

참고 : https://www.youtube.com/watch?v=RthnACwgqr8

 

방법 1

<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {
    display : table;
    width : 100%
}
.main,
.side {
    font-size : 30px;
    text-align : center;
    height :300px;
    color : #fff;
    line-height : 300px;
    
    display : table-cell;
}
.main {
	background-color : dodgerblue;
}
.side {
    background-color : crimson;
    width : 300px;
}
</style>
</head>
<body>

<div class="wrapper">
    <div class="main">main</div>
    <div class="side">side</div>
</div>

</body>
</html>

방법 2

<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {}
.main,
.side {
    font-size : 30px;
    text-align : center;
    height :300px;
    color : #fff;
    line-height : 300px;
    float: left
}
.main {
    background-color : dodgerblue;
    width : calc(100% - 300px);
    
    /* Vender Prefix */
    width: -webkit-calc(100%- 300px);
    width: -moz-calc(100%- 300px);
    width: -0-calc(100%- 300px);
    width: -ms-calc(100%- 300px);
}
.side {
    background-color : crimson;
    width : 300px;
}
</style>
</head>
<body>

<div class="wrapper">
    <div class="main">main</div>
    <div class="side">side</div>
</div>

</body>
</html>
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함