Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- javascript
- PostgreSQL
- 미츠이 스미토모
- PayPay
- react.js
- 체코
- 프라하
- 메르페이
- codebuild
- 三井住友カード
- 태국
- JenkinsFile
- local
- CSV
- terraform
- duckdb
- Python
- 페이페이
- 뮌헨
- Selenium
- typescript
- node.js
- 방콕
- 아타미
- pyenv
- documentdb
- 카마츠루
- vba
- 釜つる
- 熱海
Archives
- Today
- Total
도쿄사는 외노자
Mixed Content : Page requested an insecure stylesheet 본문
jQueryUI 버튼을 하나 따서 쓰는데
로컬에서는 잘만 되던 것이, 릴리즈를 하고 나니 깨지더라.
오류 내용은
Mixed Content: The page at 'https://--------------' was loaded over HTTPS, but requested an insecure stylesheet 'http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css'. This request has been blocked; the content must be served over HTTPS.
이런 내용이었다.
그냥 jQueryUI의 링크를 다음과 같이 http://~~~에서 https://~~~로 수정하여 해결했다.
1 2 | <!-- for jQueryUI --> <link type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css" rel="stylesheet" /> | cs |
'Tech > HTML・CSS' 카테고리의 다른 글
테이블에서 sticky로 컬럼 고정시의 border투명화 현상 해결 (2) | 2021.04.21 |
---|---|
Using encoded image in background-image (0) | 2016.12.05 |
<ul>태그 내 <li>요소의 세로정렬+줄바꿈 (0) | 2016.11.30 |
Bootstrap Modal을 화면 가운데에 띄우기 (0) | 2016.04.06 |
Tab키 이동에 따른 포커스 방지 (0) | 2016.03.25 |