.col-sm-15,
.col-md-15,
.col-lg-15 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
패딩값은 10px이나 15px 이나 알아서 설정하세요.
width: 20%;
float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
width: 20%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-15 {
width: 20%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-15 {
width: 20%;
float: left;
}
}
추가로 1/5 외에 2/5, 3/5, 4/5도 아래와 같이 추가가 가능합니다.
.col-xs-25 {
width: 40%;
float: left;
}
.col-xs-35 {
width: 60%;
float: left;
}
.col-xs-45 {
width: 80%;
float: left;
}
출처
https://code.i-harness.com/ko/q/9e811c
https://blog.polarbits.co/2014/02/16/quick-tips-5-column-layout-with-twitter-bootstrap/