--- id: bad87fee1348bd9bedf08813 title: Añade bordes alrededor de tus elementos challengeType: 0 videoUrl: 'https://scrimba.com/c/c2MvnHZ' forumTopicId: 16630 dashedName: add-borders-around-your-elements --- # --description-- Los bordes CSS tienen propiedades como `style` (estilo), `color` y `width` (ancho). Por ejemplo, si quisiéramos crear un borde rojo de 5 píxeles alrededor de un elemento HTML, podríamos usar la siguiente clase: ```html ``` # --instructions-- Crea una clase llamada `thick-green-border` (borde grueso verde). Esta clase debería añadir un borde verde de 10px, "solid", alrededor de un elemento HTML. Aplica esa clase a tu foto de gato. Recuerda que puedes aplicar múltiples clases a un elemento usando su atributo `class`, separando cada nombre de clase con un espacio. Por ejemplo: ```html ``` # --hints-- Tu elemento `img` debe incluir la "class" `smaller-image`. ```js assert($('img').hasClass('smaller-image')); ``` Tu elemento `img` debe incluir la "class" `thick-green-border`. ```js assert($('img').hasClass('thick-green-border')); ``` Tu imagen debe tener un ancho de borde o "border-width" de `10px`. ```js assert( $('img').hasClass('thick-green-border') && parseInt($('img').css('border-top-width'), 10) >= 8 && parseInt($('img').css('border-top-width'), 10) <= 12 ); ``` Tu imagen debe tener un estilo de borde o "border-style" `solid`. ```js assert($('img').css('border-right-style') === 'solid'); ``` El borde alrededor de tu elemento `img` debe ser verde. ```js assert($('img').css('border-left-color') === 'rgb(0, 128, 0)'); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


``` # --solutions-- ```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats


```