--- id: 587d78a3367417b2b2512ace title: Push Elements Left or Right with the float Property challengeType: 0 videoUrl: '' localeTitle: Empuje los elementos hacia la izquierda o hacia la derecha con la propiedad float --- ## Description
La siguiente herramienta de posicionamiento no usa realmente la position , pero establece la propiedad de float de un elemento. Los elementos flotantes se eliminan del flujo normal de un documento y se empujan hacia la left o hacia la right de su elemento principal que contiene. Se usa comúnmente con la propiedad de width para especificar cuánto espacio horizontal requiere el elemento flotante.
## Instructions
El marcado dado funcionaría bien como un diseño de dos columnas, con los elementos de section y aside uno al lado del otro. Dé al elemento #left un float de la left y el elemento #right un float de la right .
## Tests
```yml tests: - text: El elemento con id left debe tener un valor float de left . testString: 'assert($("#left").css("float") == "left", "The element with id left should have a float value of left.");' - text: El elemento con id right debería tener un valor float de right . testString: 'assert($("#right").css("float") == "right", "The element with id right should have a float value of right.");' ```
## Challenge Seed
```html

Welcome!

Content

Good stuff

```
## Solution
```js // solution required ```