Files
freeCodeCamp/mock-guide/spanish/html/attributes/autofocus-attribute/index.md
Stuart Taylor 7da04a348b fix: Update packages and fix local dev (#26907)
<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. -->

- [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md).
- [x] My pull request has a descriptive title (not a vague title like `Update index.md`)
- [x] My pull request targets the `master` branch of freeCodeCamp.
2018-10-23 18:48:46 +05:30

1.0 KiB

title, localeTitle
title localeTitle
Autofocus Attribute Atributo de Autofocus

Atributo de Autofocus | HTML5

El atributo autofocus es un atributo booleano.

Cuando está presente, especifica que el elemento debe obtener automáticamente el enfoque de entrada cuando se carga la página.

Solo un elemento de formulario en un documento puede tener el atributo autofocus . No se puede aplicar a <input type="hidden"> .

Se aplica a

| Elemento | Atributo | | : - | : - | | <button> | enfoque automático | | <input> | enfoque automático | | <select> | enfoque automático | | <textarea> | enfoque automático |

Ejemplo


<form> 
    <input type="text" name="fname" autofocus> 
    <input type="text" name="lname"> 
 </form> 

Compatibilidad

Este es un atributo HTML5.

Más información:

Atributo de autofocus HTML en w3schools.com

atributo de enfoque automático en documentos web de MDN