반응형
jquery를 맨 위로 올려본다.
[잘못된 방법 : jquery가 맨 밑에 있음]
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
[맞는 방법 : jquery가 맨 위에 있음]
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
반응형
'Web개발 > Bootstrap, CSS, 기타 UI관련' 카테고리의 다른 글
Bootstrap 4 디자인 변경 (0) | 2020.07.01 |
---|---|
Bootstrap CDN 버젼별 링크 (0) | 2020.06.21 |
google material 디자인 icon사용하기 (0) | 2020.06.21 |