HTML标签
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<hgroup>
<h1> - <h6>
<hr>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<map>
<mark>
<menu>
<meta>
<meter>
<nav>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<html>
<progress>
<q>
<rp>
<rt>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
size
HTML <basefont> size 属性
实例
规定页面上的默认字体大小:
<head>
<basefont size="7" />
</head>
<body>
<h1>This is a header</h1>
<p>This is a paragraph</p>
</body>
<basefont size="7" />
</head>
<body>
<h1>This is a header</h1>
<p>This is a paragraph</p>
</body>
浏览器支持
除了 Internet Explorer9.0 及更早IE版本,其他浏览器都不支持 size 属性。
定义和用法
HTML5 已不再支持 <basefont> 标签。请使用CSS替代。
<basefont> 的 size 属性在HTML 4.01中已废弃。
size 属性规定文档中文本的默认大小(字号)。
兼容性注释
在 HTML 4.01 中,不赞成使用 basefont 元素的 face 属性;在 XHTML 1.0 Strict DTD 中,不支持 basefont 元素的 face 属性。
CSS 语法 (<head> 部分): <style>body{font-size: 10px}</style>
在我们的 CSS 教程中,您可以找到更多有关 font-family 属性的细节。
语法
<basefont size="number" />
属性值
值 | 描述 |
---|---|
font_family | 规定文本的字体。如需规定若干字体的优先表,请使用逗号将字体名称分开(比如 <basefont face="verdana,arial,sans-serif" />)。 |