유튜브 동영상을 웹에 추가할 때 전체화면을 하려고 하면 전체 화면을 사용할 수 없습니다
라고 뜨면 아래와 같이 하면 된다
유튜브에서 소스 코드 복사 하면 나오는 iframe 요소
<iframe
width="1259"
height="708"
src="URL"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
allowfullscreen 말고,
allow 속성에 fullscreen
을 추가
ex)
<iframe
width="1259"
height="708"
src="URL"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen"
></iframe>