HTML重难点标签

120 阅读1分钟

a 标签的使用

属性

  • href
  • target
  • download
  • rel=noopener

作用

  • 跳转外部页面
  • 跳转内部锚点
  • 跳转到邮箱或电话等

a 的href取值

  1. 网址
  1. 路径
  • /a/b/c以及a/b/c
  • index.html以及./index.html
  1. 伪协议
  • tel:手机号
  • mailto:邮箱号
  • JavaScript:代码
  1. id
  • href=#xxx

a的target取值

  1. 内置名字
  • _blank(在新窗口打开)
  • _top
  • _parent
  • _self

a 的download:用于下载页面

table标签

相关的标签

  • table
  • thead(表头部)
  • tbody
  • tfoot
  • td(数据)
  • tr(行)
  • th(列)

相关的样式

  • table-layout
  • border-collapse
  • border-spacing

img标签

作用:发出get请求,展示一张图片

属性

alt/href/height/width/src

事件

onload/onerror

响应式

max-width:100%

可替换元素(?)