Mixings, o pedazos de código reutilizable

Por 9.99€ al mes tendrás acceso completo a todos los cursos. Sin matrícula ni permanencia.

@mixin circle($width) {
  width: $width;
  height: $width;
  border-radius: 100%;
  background:black;
}

div{
  @include circle(100px);
}

Por 9.99€ al mes tendrás acceso completo a todos los cursos. Sin matrícula ni permanencia.