<iframe>
name : 프레임의 이름.
src : 포함할 문서의 경로. url
width : 프레임의 가로 사이즈.
height : 프레임의 세로 사이즈.
allowfullscreen: 전체화면 모드 사용을 지정한다. (true, false)
frameborder : 프레임 테두리를 사용한다. (px로 표시. 0~n)
sandbox : 보안을 위한 읽기 전용으로 삽입한다.
*(true, false) or allow-form: 양식 제출 가능, allow-scripts: 스크립트 실행 가능, allow-same-origin: 같은 도메인의 리소스 사용 가능.
<iframe src="https://www.naver.com" title="naver web page"></iframe>
|
cs |
<canvas>
width : 캔버스의 가로 사이즈.
height : 캔버스의 세로 사이즈.
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;"></canvas>
|
cs |
'::public > HTML & CSS(SCSS)' 카테고리의 다른 글
HTML - 요소((양식) form, input, label, button, textarea, fieldset, legend, progress) (0) | 2021.03.30 |
---|---|
HTML - 요소((표 컨텐츠) table, tr, th, td, caption, col, colgroup, thead, tbody, tfoot) (0) | 2021.03.29 |
HTML - 요소(img, audio, video) (0) | 2021.03.24 |
HTML - 요소(Elements & Attributes) 총정리 (0) | 2021.03.22 |
HTML - 블록 레벨(block level) 요소와 인라인(inline) 요소 (0) | 2021.03.19 |