HTML <area> 미디어 속성

❮ HTML <영역> 태그

예시

미디어 속성을 사용하여 대상 URL이 최적화된 미디어/장치를 지정합니다.

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun"
  href="sun.htm" media="screen and (min-color-index:256)">
</map>

정의 및 사용

속성 은 media대상 URL이 최적화된 미디어/장치를 지정합니다.

이 속성은 URL이 iPhone과 같은 특수 장치, 음성 또는 인쇄 매체용으로 설계되었음을 지정하는 데 사용됩니다.

이 속성은 여러 값을 허용할 수 있습니다.

href속성이 있는 경우에만 사용됩니다 .

참고: 이 속성은 순전히 권고 사항입니다.


브라우저 지원

Attribute
media Yes Yes Yes Yes Yes

통사론

<area media="value">


가능한 연산자

Value Description
and Specifies an AND operator
not Specifies a NOT operator
, Specifies an OR operator

장치

Value Description
all Default. Suitable for all devices
aural Speech synthesizers
braille Braille feedback devices
handheld Handheld devices (small screen, limited bandwidth)
projection Projectors
print Print preview mode/printed pages
screen Computer screens
tty Teletypes and similar media using a fixed-pitch character grid
tv Television type devices (low resolution, limited scroll ability)

가치

Value Description
width Specifies the width of the targeted display area.
"min-" and "max-" prefixes can be used.
Example: media="screen and (min-width:500px)"
height Specifies the height of the  targeted display area. "min-" and "max-" prefixes can be used.
Example: media="screen and (max-height:700px)"
device-width Specifies the width of the target display/paper.
"min-" and "max-" prefixes can be used.
Example: media="screen and (device-width:500px)"
device-height Specifies the height of the target display/paper.
"min-" and "max-" prefixes can be used.
Example: media="screen and (device-height:500px)"
orientation Specifies the orientation of the target display/paper.
Possible values: "portrait" or "landscape"
Example: media="all and (orientation: landscape)"
aspect-ratio Specifies the width/height ratio of the targeted display area.
"min-" and "max-" prefixes can be used.
Example: media="screen and (aspect-ratio:16/9)"
device-aspect-ratio Specifies the device-width/device-height ratio of the target display/paper.
"min-" and "max-" prefixes can be used.
Example: media="screen and (aspect-ratio:16/9)"
color Specifies the bits per color of target display.
"min-" and "max-" prefixes can be used.
Example: media="screen and (color:3)"
color-index Specifies the number of colors the target display can handle.
"min-" and "max-" prefixes can be used.
Example: media="screen and (min-color-index:256)"
monochrome Specifies the bits per pixel in a monochrome frame buffer.
"min-" and "max-" prefixes can be used.
Example: media="screen and (monochrome:2)"
resolution Specifies the pixel density (dpi or dpcm) of the target display/paper.
"min-" and "max-" prefixes can be used.
Example: media="print and (resolution:300dpi)"
scan Specifies scanning method of a tv display.
Possible values are "progressive" and "interlace".
Example: media="tv and (scan:interlace)"
grid Specifies if the output device is grid or bitmap.
Possible values are "1" for grid, and "0" otherwise.
Example: media="handheld and (grid:1)"

❮ HTML <영역> 태그