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.
This commit is contained in:
Stuart Taylor
2018-10-23 14:18:46 +01:00
committed by mrugesh mohapatra
parent 153e1c9f38
commit 7da04a348b
341 changed files with 17836 additions and 1026 deletions

View File

@@ -0,0 +1,42 @@
---
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)