最新的Web開發教程
 

HTML <a> media Attribute

<HTML <a>標籤

用鏈接media屬性:

<a href="att_a_media.asp?output=print"
media="print and (resolution:300dpi)">
Open media attribute page for print.</a>
試一試»

定義和用法

media屬性指定什麼媒體/設備鏈接文檔方面進行了優化。

此屬性用於指定目標URL是為特殊設備(如iPhone),語音或打印介質。

這個屬性可以接受多個值。

僅當使用href屬性存在。

注:此屬性是純粹的諮詢。


瀏覽器支持

元件
media

HTML 4.01和HTML5之間的差異

media屬性,HTML5是新的。


句法

<a media="value">

可能的運營商

描述
and 指定AND運算符
not 指定NOT運算符
, 指定OR操作符

設備

描述
all 默認。 適用於所有設備
aural 語音合成器
braille 盲文反饋裝置
handheld 手持設備(小屏幕,有限的帶寬)
projection 投影機
print 打印預覽模式/打印頁面
screen 電腦屏幕
tty 使用固定寬字符網格的電傳打字機和類似媒體
tv 電視類型設備(低分辨率,有限的滾動能力)

描述
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 指定目標顯示/紙的設備寬度/設備高度比。
"min-""max-"可使用的前綴。
例如: media="screen and (aspect-ratio:16/9)"
color 指定每個目標的顯示顏色的位。
"min-""max-"可使用的前綴。
例如:媒體=“屏幕(顏色:3)”
color-index 指定顏色目標顯示可以處理的數量。
"min-""max-"可使用的前綴。
例如: media="screen and (min-color-index:256)"
monochrome 指定在單色幀緩衝器每像素的位。
"min-""max-"可使用的前綴。
例如: media="screen and (monochrome:2)"
resolution 指定目標顯示器/紙張的像素密度(DPI或DPCM)。
"min-""max-"可使用的前綴。
例如: media="print and (resolution:300dpi)"
scan 指定一個電視顯示器的掃描方法。
可能的值是"progressive""interlace"
例如:媒體=“電視(掃描:隔行掃描)”
grid 指定是否輸出設備是電網或位圖。
可能的值是“1”的網格,和“0”,否則。
例如: media="handheld and (grid:1)"

<HTML <a>標籤