Create Reusable CSS with Mixins ... help me ..please

Tell us what’s happening:

Your code so far


<style type='text/sass'>
  
  @mixin border-radius($radius){
    -webkit-border-raidus: $radius;
    -moz-border-radius: $radius;
    -ms-border-radius: $radius;
    border-radius: $radius;
  }
  
  #awesome {
    width: 150px;
    height: 150px;
    background-color: green;
    @include border-radius(15px);
  }
</style>

<div id="awesome"></div>
  

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/create-reusable-css-with-mixins

man you need to call the maxin function

border-radius maxin{ @include border-radius(“valuePx”) }

@kyawhtaythant

Good try. You just have a typo.

-webkit-border-raidus.

It should be radius not raidus.

Thanks… so much:smile: