- 用于一个文档中包含的所有相对 URL 的根 URL。一份文档中只能有一个
元素。 - 当超链接标签 没有指定 href 和 target 的属性时,会默认使用
标签的内容。
标签属性
herf属性
```html
这样就把页面上所有href为相对链接的属性定向为[http://www.baidu.com/chenqian.css](http://www.baidu.com/chenqian.css)链接,其中<img>中的src属性同样适用。该属性在实际应用中不可靠。
<a name="SXudD"></a>
### target属性
```html
<base target="_self"> 载入的页面为当前页面
<base target="_blank"> 载入的页面为新的空白的页面
<base target="_parent">
<base target="_top">
<base target="_framename">