본문 바로가기

IT/Develop

[Bootstrap]부트스트랩 반응형 제거하는 방법

 

1. 메타태그 제거

고정폭을 사용하기 위해 Head에 있는 메타태그를 제거해주세요.

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

 

 

2. 가로 폭 설정

화면 사이즈를 지정해주세요

.container{width:1200px; max-width:none!important;}

 

 

 

3. 그리드 클래스 변경

그리드 사용시 모두 col-xs-*로 변경해주세요

Ex ) col-md-6 -> col-xs-6