Frontend Quiz: Top Left

by rulokc

HTML

<div class="box"></div>

<!--
TOP LEFT

Modifica los estilos para que la caja roja cubra a la verde.
-->

CSS

body {
  background: url('http://rulokc.heliohost.org/frontendquiz/img/topleft.png') no-repeat;
  /* QUÉ PONDRÍAS AQUÍ */
}

.box {
  width: 100px;
  height: 100px;
  background: red;
}