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
- IPO
- css
- JavaScript
- php
- 공모주 청약 일정
- 코드이그나이터
- 오라클
- html
- 주식 청약 일정
- Stock ipo
- Oracle
- codeigniter
- 리눅스
- 6월 공모주 청약 일정
- SQL
- 자바
- 제이쿼리
- 공모주 청약
- Eclipse
- java
- jquery
- 자바스크립트
- 주식 청약
- 주식
- Stock
- 7월 공모주 청약 일정
- MYSQL
- 공모주
- 맥
- linux
Archives
- Today
- Total
개발자의 끄적끄적
[html/css] html iframe sandbox allow modals error 해결 방법 본문
728x90
반응형
[html/css] html iframe sandbox allow modals error 해결 방법
html 에서
iframe 을 사용하다 보면
아래와 같이
sandbox allow-modals 라는
에러가 발생하는 경우가 있습니다.
The document is sandboxed, and the 'allow-modals' keyword is not set.
그럴때는 아래 내용 처럼
iframe 에
sandbox 속성에 allow-modals 를 추가해주면 됩니다!
<iframe id="test" sandbox="allow-modals"></iframe>
참고들 하세요!
반응형
'개발 > html & css' 카테고리의 다른 글
[html/css] html meta viewport example / html 이미지 확대 막는 방법 (0) | 2021.09.16 |
---|---|
[html/css] css 문자열 ... 처리하는 방법 (0) | 2021.09.13 |
[html/css] html iframe allow popups error 해결 방법 (0) | 2021.09.10 |
[html/css] html iframe load complete check example / html iframe 로드 완료 여부 확인 방법 (0) | 2021.09.10 |
[html/css] html a tag text-decoration-line example / html a태그 밑줄 없애는 방법 (0) | 2021.08.31 |
Comments