<!-- 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.
42 lines
1.0 KiB
Markdown
42 lines
1.0 KiB
Markdown
---
|
|
title: P Align Attribute
|
|
localeTitle: P Alinear atributo
|
|
---
|
|
## P Alinear atributo
|
|
|
|
### Importante
|
|
|
|
Este atributo no es compatible con HTML5. Se recomienda utilizar la [propiedad CSS de `text-align`](https://guide.freecodecamp.org/css/text-align) .
|
|
|
|
Para alinear el texto dentro de una etiqueta `<p>` , este atributo ayudará.
|
|
|
|
### Sintaxis
|
|
|
|
```html
|
|
|
|
<p align="position">Lorem Ipsum...</p>
|
|
```
|
|
|
|
### Atributos
|
|
|
|
* **izquierda** - el texto se alinea a la izquierda
|
|
* **derecha** - el texto se alinea a la derecha
|
|
* **centro** - el texto se alinea con el centro
|
|
* **justificar** - Todas las líneas de texto tienen el mismo ancho
|
|
|
|
### Ejemplo
|
|
|
|
```html
|
|
|
|
<html>
|
|
<body>
|
|
<p align="center">Paragraph align attribute example</p>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
#### Más información:
|
|
|
|
* [CSS `text-align`](https://guide.freecodecamp.org/css/text-align)
|
|
* [W3 - Especificación HTML 4.01](https://www.w3.org/TR/html401/struct/text.html#h-9.3.1)
|
|
* [MDN - Alinear Texto CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align) |