정의 및 사용
width 특성은 픽셀 요소의 폭을 지정한다.
참고 : 입력 요소의 경우, width 속성은 함께 사용 <input type="image"> .
적용
width 특성은 다음의 요소에 사용될 수있다 :
집단 | 속성 |
---|---|
<canvas> | width |
<embed> | width |
<iframe> | width |
<img> | width |
<input> | width |
<object> | width |
<video> | width |
예
Canvas 예
<canvas> 높이 200 픽셀의 폭 요소 :
<canvas id="myCanvas" width="200" height="200" style="border:1px solid">
»그것을 자신을 시도 Iframe 예
<iframe> 지정된 높이와 200 픽셀의 폭 :
<iframe src="/default.html" width="200"
height="200"></iframe>
»그것을 자신을 시도 Input 예
높이와 너비 속성으로, 버튼을 제출 등의 이미지를 정의합니다 :
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="image" src="img_submit.gif" alt="Submit" width="48"
height="48">
</form>
»그것을 자신을 시도 Object 예
400 픽셀 높이 및 폭을 갖는 플래시 애니메이션 ::
<object data="helloworld.swf" width="400" height="400"></object>
»그것을 자신을 시도 Video 예
지정된 폭과 높이로 비디오 플레이어 :
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
»그것을 자신을 시도 브라우저 지원
width
속성은 각 요소에 대한 다음과 같은 브라우저 지원을하고있다 :
요소 | |||||
---|---|---|---|---|---|
canvas | 4.0 | 9.0 | 2.0 | 3.1 | 9.0 |
embed | 예 | 예 | 예 | 예 | 예 |
iframe | 예 | 예 | 예 | 예 | 예 |
img | 예 | 예 | 예 | 예 | 예 |
input | 1.0 | 예 | 16.0 | 예 | 1.0 |
object | 예 | 예 | 예 | 예 | 예 |
width | 예 | 예 | 예 | 예 | 예 |