widness
1/12/2018 - 12:58 PM

Create function

Create function with Sass

@function calculHauteur($largeur){

  @return $largeur * 2;

}

div {
    width: 250px;
    height: calculHauteur(250px);
}