SASS mixin Problem

Tell us what’s happening:
Everything is correct I think but In Running Test Section It says That And When I add that it gives an error.

  **Your code so far**
// running tests Your code should call the
Your code should call the border-radius mixin using the @include keyword, setting it to 15px.

<style type='text/scss'>
@mixin border-radius( $radius){
  -webkit-border-radius:$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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36.

Challenge: Create Reusable CSS with Mixins

Link to the challenge:

@aminulislam565688 You need to add semicolon.

1 Like

Thank you so much. It’s worked

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.