String.prototype.fontsize()
Deprecated
Avoid using this feature in new projects. HTML wrapper methods exist only for backwards compatibility. Use DOM APIs to create elements instead. This feature may be a candidate for removal from web standards or browsers.>
Consider using the following features instead: DOM.>
El método fontsize() crea <font> elemento HTML que muestra una cadena con el tamaño especificado.
Sintaxis
str.fontsize(size)
Parámetros
size-
Un entero entre 1 y 7.
Descripción
Cuando especificas el tamaño como entero, estableces el tamaño de la fuente. Cuando especificas el tamaño como cadena tal como "-2", se ajusta el tamaño de la fuente al de la etiqueta <basefont>.
When you specify size as an integer, you set the font size of str to one of the 7 defined sizes. When you specify size as a string such as "-2", you adjust the font size of str relative to the size set in the <basefont> tag.
Ejemlpos
>Usos fontsize()
The following example uses string methods to change the size of a string:
var worldString = "Hello, world";
console.log(worldString.small()); // <small>Hello, world</small>
console.log(worldString.big()); // <big>Hello, world</big>
console.log(worldString.fontsize(7)); // <font size="7">Hello, world</fontsize>
With the element.style object you can get the element's style attribute and manipulate it more generically, for example:
document.getElementById("yourElemId").style.fontSize = "0.7em";
Especificaciones
| Specification |
|---|
| ECMAScript® 2027 Language Specification> # sec-string.prototype.fontsize> |