<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Insert title here</title>
<!-- Bootstrap 링크 -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<style type="text/css">
.col-md-8, .col-md-4 {
border: 1px dashed red;
}
.col-md-7, .col-md-6, .col-md-5 {
background-color: yellow;
border: 1px solid blue;
padding: 10px;
}
.row {
margin-bottom: 4px;
margin-top: 4px;
}
</style>
</head>
<body>
<!-- 열 안에 다른 행,열 넣기 예제 -->
<div class="container">
<div class="row">
<div class="col-md-8">8
<!-- 열 안에 추가된 새로운 행 -->
<div class="row">
<div class="col-md-5">5</div>
<div class="col-md-7">7</div>
</div>
</div>
<div class="col-md-4">4
<!-- 열 안에 추가된 새로운 행 -->
<div class="row">
<div class="col-md-6">6</div>
<div class="col-md-6">6</div>
</div>
</div>
</div>
</div>
</body>
</html>