-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert css/orphaned/conflicting folders to Markdown (es) (#9534)
* css-orphaned-conflicting html cleanup * css-orphaned-conflicting rename html to md * css-orphaned-conflicting h2m replace * css-orphaned-conflicting linting with 8181 .markdownlint-cli2.jsonc * css-orphaned-conflicting drop the url title attributes * css-orphaned-conflicting remove languages macro * fix files/es/web/opensearch/index.md * Apply suggestions from code review
- Loading branch information
Showing
119 changed files
with
8,335 additions
and
9,459 deletions.
There are no files selected for viewing
308 changes: 0 additions & 308 deletions
308
files/es/conflicting/learn/javascript/objects/classes_in_javascript/index.html
This file was deleted.
Oops, something went wrong.
313 changes: 313 additions & 0 deletions
313
files/es/conflicting/learn/javascript/objects/classes_in_javascript/index.md
Large diffs are not rendered by default.
Oops, something went wrong.
245 changes: 0 additions & 245 deletions
245
...icting/mdn/writing_guidelines/page_structures_479b8c93d0b37a3f2a020112ae60e692/index.html
This file was deleted.
Oops, something went wrong.
223 changes: 223 additions & 0 deletions
223
...dn/writing_guidelines/page_structures_479b8c93d0b37a3f2a020112ae60e692/index.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
--- | ||
title: basefont | ||
slug: conflicting/Web/CSS/CSS_Fonts | ||
tags: | ||
- HTML | ||
- HTML:Elemento | ||
- Todas_las_Categorías | ||
translation_of: Web/HTML/Element/basefont | ||
original_slug: Web/HTML/Element/basefont | ||
--- | ||
### Definición | ||
|
||
- **basefont** -_fuente base_ . Permite cambiar algunas propiedades del texto. | ||
|
||
- : **Sus etiquetas son**: \<basefont> (solo tiene una). | ||
|
||
- **Está definido como**: Elemento [desaprobado](es/HTML/Elemento/Tipos_de_elementos#desaprobado). | ||
- : En un doctype transicional está definido como un elemento [especial](es/HTML/Elemento/Tipos_de_elementos#especial) y por lo tanto [en línea](es/HTML/Elemento/Tipos_de_elementos#enlinea). | ||
|
||
**Crea una caja**: No. | ||
**Puede contener**: Nada. | ||
|
||
#### Atributos | ||
|
||
<table class="fullwidth-table standard-table"> | ||
<tbody> | ||
<tr> | ||
<th>atributo</th> | ||
<th>descripción</th> | ||
<th>valor</th> | ||
</tr> | ||
<tr> | ||
<th colspan="3">Genéricos</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/struct/global.html#adef-id" | ||
><span style="color: green">id</span></a | ||
> | ||
</td> | ||
<td> | ||
Le da un nombre al elemento que lo diferencia de todos los demás del | ||
documento. | ||
</td> | ||
<td> | ||
Un | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/types.html#type-id" | ||
>nombre único</a | ||
>. Sensible a | ||
<abbr title="diferencia entre Máyusculas y minúsculas">M/m.</abbr> Por | ||
defecto: Lo fija el navegador. | ||
</td> | ||
</tr> | ||
<tr> | ||
<th colspan="3">Específicos</th> | ||
</tr> | ||
<tr> | ||
<td colspan="3">No tiene</td> | ||
</tr> | ||
<tr> | ||
<th colspan="3">De transición</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/present/graphics.html#adef-size-FONT" | ||
><span style="color: green">size</span></a | ||
> | ||
</td> | ||
<td>Tamaño de la fuente. Según una tabla del 1 al 7.</td> | ||
<td> | ||
Un número entero (ej. 1), o un valor incremental (ej. +1). | ||
<s>Por defecto:</s> debe indicarlo el autor. | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/present/graphics.html#adef-color-FONT" | ||
><span style="color: green">color</span></a | ||
> | ||
</td> | ||
<td>El color del texto.</td> | ||
<td> | ||
Un | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/types.html#h-6.5" | ||
>color RGB</a | ||
>. Por defecto: Lo fija el navegador. | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<a | ||
class="external" | ||
href="http://html.conclase.net/w3c/html401-es/present/graphics.html#adef-face-FONT" | ||
><span style="color: green">face</span></a | ||
> | ||
</td> | ||
<td>Especifica la/s fuentes para el texto.</td> | ||
<td> | ||
Lista de nombres de fuentes separadas por coma. Por defecto: Lo fija el | ||
navegador. | ||
</td> | ||
</tr> | ||
<tr> | ||
<th>atributo</th> | ||
<th>descripción</th> | ||
<th>valor</th> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
### Ejemplos de uso | ||
|
||
#### Un ejemplo simple | ||
|
||
Código: | ||
|
||
```html | ||
<p> | ||
Texto normal y ... | ||
<basefont size="5" color="#0000ff"> | ||
Texto distinto. | ||
</p> | ||
``` | ||
|
||
Resultado: | ||
|
||
{{EmbedLiveSample}} | ||
|
||
### Estilo predeterminado | ||
|
||
### Notas | ||
|
||
### Referencia | ||
|
||
- El elemento [**basefont** en la especificación](http://html.conclase.net/w3c/html401-es/present/graphics.html#edef-BASEFONT) de html 4.01 | ||
|
||
### Soporte | ||
|
||
Puede consultar esta [comparativa](http://www.webdevout.net/browser_support_html.php#support-html401-basefont): IE 6 - IE 7 - FF 1.5 - OP 9. | ||
|
||
--- | ||
|
||
> **Nota:** Estamos ampliando este documento, posiblemente contenga defectos y carencias. ¡Estamos en obras!... disculpen las molestias. | ||
> | ||
> ¿Quieres participar en su elaboración? Para saber cómo hacerlo consulta MDC:Como ayudar. | ||
Categoría | ||
|
||
interwiki links | ||
|
||
automatismos |
Oops, something went wrong.