<!-- 下載hello.txt --> <a href="test.txt" download="hello">點擊下載</a>
說明:hello爲瀏覽器下載後文件的名字,瀏覽器會自動檢測文件的擴展名html
<a href="https://github.com/wmui">GitHub</a>
說明:href值能夠是相對地址,絕對地址,錨點(#top)git
<a href="https://github.com/wmui" media="print and (resolution:300dpi)">GitHub</a>
and
運算符(至關於&&), not
運算, ,
運算符(至關於||)github
all是默認值,表示適合全部設備。aural表示語音合成器。braille表示盲文反饋裝置。handheld表示手持設備。projection表示投影機。print打印預覽模式或頁面。screen計算機屏幕。tty電傳打字機以及使用更寬字符網格的相似媒介。tv電視類型設備。chrome
width: 目標顯示區域的寬度(可以使用min-, max-前綴),例如:media = "screen and (min-width: 300px)
瀏覽器
height: 目標顯示區域的高度(可以使用min-, max-前綴),例如:media = "screen and (min-height: 300px)"
app
device-width: 目標顯示器的寬度(可以使用min-, max-前綴),例如:media = "screen and (device-width: 300px)"
框架
device-height: 目標顯示器高度 (可以使用min-, max-前綴),例如:media = "screen and (device-height: 300px)"
ide
orientation: 目標顯示器取向(可能值:portrait, landspace,例如:media = "all and (orientation: landspace)"
oop
aspect-ratio: 目標顯示區域的寬高比(可以使用min-, max-前綴),例如:media = "screen and (aspect-ratio: 16 / 9)"
ui
device-aspect-ratio: 目標顯示器的寬高比(可以使用min-, max-前綴),例如:media = "screen and (device-aspect-ratio: 16 / 9)"
color: 規定目標顯示器的bits per color(可以使用min-, max-前綴),例如:media = "screen and (color: 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: 規定tv顯示器的掃描方法,可能值progressive和interlace,例如:media = "tv and (scan: interlace)
grid: 規定輸出設備是網格仍是位圖,可能的值:1表明網格,0表明其讓。例如:media = "handheld and (grid: 1)"
<a rel="friend" href="https://github.com/wmui>wmui</a>
說明:rel屬性表示了當前文檔與目標文檔的關係,屬性值是以空格分割的關係列表,搜索引擎能夠利用該屬性得到更多相關信息,也能夠根據w3c官方標準自定義一些值。
alternate: 文檔的可選版本。
stylesheet: 文檔的外部樣式表。
start: 第一個文檔。
next: 下一個文檔。
prev: 上一個文檔。
contents: 文檔目錄。
index文檔索引。
glossary: 文檔中所用字詞的術語或解釋。
copyright: 包含版權信息的文檔。
chapter: 文檔的章。
section: 文檔的節。
subsection: 文檔的子段。
appendix: 文檔附錄。
help: 幫助文檔。
bookmark: 相關文檔。
nofollow: 搜索引擎不要跟蹤連接。
另外還用licence,tag,frined。
擴展:以上的屬性值亦能夠用在<link>
標籤的rel屬性裏
_blank在新窗口中打開文檔
_self 默認值,在當前窗口或框架中打開文檔
_parent 在父框架集中打開文檔
_top 在整個當前窗口中打開文檔
framename 在指定框架中打開文檔
說明:_parent和_top用於在框架中內嵌的連接
<a href="https://github.com/wmui" type="text/html">wmui</a>
說明:只能在href屬性存在時使用,用於規定type屬性的MIME類型
The <abbr title="People's Republic of China">PRC</abbr> was founded in 1949.
The PRC was founded in 1949.
說明:abbr用於表示簡寫或者縮寫
<footer> <address> 電話:1234567<br> 郵箱:22337383@qq.com </address> </footer>
說明:用於定義做者/擁有者的聯繫信息,不該該用於描述通信地址,除非他是聯繫信息的一部分,該元素一般連同其餘信息被包含在footer標籤中。當位於body
標籤內是表示文檔的聯繫信息,位於article
標籤內時表示文章的聯繫信息。