a 标签的用法
a 标签的属性:
1. href
href属性的取值:
- 网址
google.com - 路径
/a/b/c - 伪协议
javascript:代码;
mailto:邮箱
tel:手机号 - id
#xxx
2. target
target属性的取值:
- _blank
- _self
- _top
- _parent
3. download (下载页面)
缺点:手机浏览器可能不支持
img 标签的用法
img标签的属性:
- alt
- title
- src
img标签的事件:
- onload
- onerror (当加载图片出现错误时触发)
注意:当图片有拉伸变形时,设置max-width:100% !!!
注意:img元素也是可替换元素!!!
table 标签的用法
table相关的标签有:
- table
- thead
- tbody
- tfoot
- tr
- td
- th
table相关的样式有:
- table-layout
- border-spacing
- border-collapse
其他感想
不懂就查mdn