Latest web development tutorials

propiedades de medios de enlace HTML

El enlace HTML Tag Referencia etiqueta <link> HTML

Ejemplos

Durante dos clases de dos tipos de medios diferentes (pantalla de ordenador e imprimir) de una hoja de estilos diferentes:

<head>
<link rel="stylesheet" type="text/css" href="theme.css">
<link rel="stylesheet" type="text/css" href="print.css" media="print">
</head>

Trate »

Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos los navegadores principales propiedades de apoyo a los medios de comunicación.


Definición y Uso

atributo media especifica el documento vinculado se mostrará en cualquier dispositivo.

Este atributo se utiliza generalmente en conjunción con las hojas de estilo CSS para diferentes tipos de medios especificados diferentes estilos.

la propiedad de medios acepta un valor numérico.


Diferencias entre HTML 4.01 y HTML5

ahora es compatible con más valor del atributo medios de comunicación.


gramática

<link media="value">

posible operador

描述
and 规定一个 AND 运算符。
not 规定一个 NOT 运算符。
, 规定一个 OR 运算符。

equipo

描述
all 默认。适用于所有设备。
aural 语音合成器。
braille 盲文反馈装置。
handheld 手持设备(小屏幕、有限带宽)。
projection 投影仪。
print 打印预览模式/打印页面。
screen 计算机屏幕。
tty 电传打字机以及类似的使用等宽字符网格的媒介。
tv 电视机类型设备(低分辨率、有限的滚屏能力)。

valor

描述
width 规定目标显示区域的宽度。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (min-width:500px)"
height 规定目标显示区域的高度。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (max-height:700px)"
device-width 规定目标显示器/纸张的宽度。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (device-width:500px)"
device-height 规定目标显示器/纸张的高度。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (device-height:500px)"
orientation 规定目标显示器/纸张的方向。
可能的值:"portrait" 或 "landscape"。
例子:media="all and (orientation: landscape)"
aspect-ratio 规定目标显示区域的宽度/高度比。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (aspect-ratio:16/9)"
device-aspect-ratio 规定目标显示器/纸张的 device-width/device-height 比率。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (aspect-ratio:16/9)"
color 规定目标显示器的 bits/color。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (color:3)"
color-index 规定目标显示器可以处理的颜色数。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (min-color-index:256)"
monochrome 规定单色帧缓冲中的 bits/pixel。
可使用 "min-" 和 "max-" 前缀。
例子:media="screen and (monochrome:2)"
resolution 规定目标显示器/纸张的像素密度 (dpi 或 dpcm)。
可使用 "min-" 和 "max-" 前缀。
例子: media="print and (resolution:300dpi)"
scan 规定 tv 显示器的扫描方式。
可能的值:"progressive" 和 "interlace"。
例子:media="tv and (scan:interlace)"
grid 规定输出设备是否是网格或位图。
可能的值:"1" 为网格,否则为 "0"。
例子:media="handheld and (grid:1)"


El enlace HTML Tag Referencia etiqueta <link> HTML