HTML常用标签
a 标签
a标签的属性:
- a标签的href取值=hyper reference
- a标签的target取值
- download
- rel=noopener
a标签的href取值
a标签的target取值
- 内置名字:
- _blank 在空白页面打开
- _top 在顶级页面打开
- _parent 在当前链接iframe上一层打开
- _self 默认值
- 程序员命名
- window的名字
- iframe的名字
download
- 作用:不是打开页面,而是下载页面
- 问题:不是所有浏览器都支持,尤其是手机浏览器可能不支持
a标签的作用
- 跳转外部页面
- 跳转内部锚点
- 跳转到邮箱或电话等
img 标签
- 作用:发出get请求,展示一张图片
- 属性:
- src=source 图片地址
- alt=alternative 图片显示错误,给个提示
- height/width 永远不要让图片变形
- 事件:onload/onerror 监听图片是否加载成功
- 响应式:max-width:100% 手机端适配
- 可替换元素 (面试问题)
table 标签
-
<table>
-
<thead>
-
<tbody>
-
<tfoot>
-
<tr>table row</tr>
-
<th>table head</th>
-
<td>table data</td>
table 标签相关的样式
- table-layout
- border-collapse: collapse;
- border-spacing: 0;