HTML အကိုးအကား

အက္ခရာဖြင့် HTML HTML အမျိုးအစားအလိုက် HTML Browser ပံ့ပိုးမှု HTML အရည်အချင်းများ HTML ကမ္ဘာလုံးဆိုင်ရာ အရည်အချင်းများ HTML ပွဲများ HTML အရောင်များ HTML Canvas HTML အသံ/ဗီဒီယို HTML အက္ခရာအစုံများ HTML Doctypes HTML URL ကုဒ် HTML ဘာသာစကားကုဒ်များ HTML နိုင်ငံကုဒ်များ HTTP မက်ဆေ့ခ်ျများ HTTP နည်းလမ်းများ PX မှ EM Converter ကီးဘုတ်ဖြတ်လမ်းများ


HTML <link> media Attribute

❮ HTML <link> tag

ဥပမာ

မတူညီသောမီဒီယာအမျိုးအစားနှစ်ခုအတွက် မတူညီသောပုံစံစာရွက်နှစ်ခု (စခရင်နှင့် ပရင့်):

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

အဓိပ္ပါယ်နှင့် အသုံးပြုမှု

mediaရည်ညွှန်းချက်သည် ပစ်မှတ်ရင်းမြစ်အတွက် အကောင်းဆုံးဖြစ်အောင်ပြုလုပ်ထားသည့် မီဒီယာ/စက်ပစ္စည်းကို သတ်မှတ်ပေးသည်

မတူညီသောမီဒီယာအမျိုးအစားများအတွက် မတူညီသောစတိုင်များကို သတ်မှတ်ရန် ဤ attribute ကို အများအားဖြင့် CSS စတိုင်စာရွက်များဖြင့် အသုံးပြုပါသည်။

ရည်ညွှန်းချက် သည် mediaတန်ဖိုးများစွာကို လက်ခံနိုင်သည်။


Browser ပံ့ပိုးမှု

Attribute
media Yes Yes Yes Yes Yes

အထားအသို

<link media="value">

အော်ပရေတာများ ဖြစ်နိုင်သည်။

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

စက်များ

Value Description
all Default. Used for all media type devices
print Used for Print preview mode/printed pages
screen Used for computer screens, tablets, smart-phones etc.
speech Used for screenreaders that "reads" the page out loud
aural Deprecated. Speech synthesizers
braille Deprecated. Braille feedback devices
handheld Deprecated. Handheld devices (small screen, limited bandwidth)
projection Deprecated. Projectors
tty Deprecated. Teletypes and similar media using a fixed-pitch character grid
tv Deprecated. Television type devices (low resolution, limited scroll ability)

တန်ဖိုးများ

Value Description
aspect-ratio Specifies the width/height ratio of the targeted display area.
"min-" and "max-" prefixes can be used.
Example: media="screen and (max-aspect-ratio:16/9)"
color Specifies the bits per color of target display.
"min-" and "max-" prefixes can be used.
Example: media="screen and (min-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)"
device-aspect-ratio Deprecated. Specifies the device-width/device-height ratio of the target display/paper.
device-width Deprecated. Specifies the width of the target display/paper.
device-height Deprecated. Specifies the height of the target display/paper.
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)"
height Specifies the height of the  targeted display area.
"min-" and "max-" prefixes can be used.
Example: media="screen and (max-height:700px)"
monochrome Specifies the bits per pixel in a monochrome frame buffer.
"min-" and "max-" prefixes can be used.
Example: media="screen and (min-monochrome:2)"
orientation Specifies the orientation of the target display/paper.
Possible values: "portrait" or "landscape"
Example: media="all and (orientation: landscape)"
resolution Specifies the pixel density (dpi or dpcm) of the target display/paper.
"min-" and "max-" prefixes can be used.
Example: media="print and (min-resolution:300dpi)"
scan Specifies scanning method of a tv display.
Possible values are "progressive" and "interlace".
Example: media="tv and (scan:interlace)"
width Specifies the width of the targeted display area.
"min-" and "max-" prefixes can be used.
Example: media="screen and (min-width:500px)"

❮ HTML <link> tag