Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The obsolete HTML Base Font element (<basefont>
) sets a default font face, size, and color for the other elements which are descended from its parent element. With this set, the font's size can then be varied relative to the base size using the <font>
element.
You should not use this element; instead, you should use CSS properties such as font
, font-family
, font-size
, and color
to change the font configuration for an element and its contents.
Like all other HTML elements, this element supports the global attributes.
color
face
size
Do not use this element! Though once (imprecisely) normalized in HTML 3.2, it wasn't supported in all major browsers. Further, browsers, and even successive versions of browsers, never implemented it in the same way: practically, using it has always brought indeterminate results.
The <basefont>
element was deprecated in the standard at the same time as all elements related to styling only. Starting with HTML 4, HTML does not convey styling information anymore (outside the <style>
element or the style attribute of each element). In HTML5, this element has been removed completely. For any new web development, styling should be written using CSS only.
The former behavior of the <font>
element can be achieved, and even better controlled using the CSS Fonts properties.
This element implements the HTMLBaseFontElement
interface.
<basefont color="#FF0000" face="Helvetica" size="+2" />
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | No | Yes | No | Yes | No | No |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | No | No | Yes | No | Yes | No | No |
<body>
element.<basefont />
.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/basefont