My code passes no test at all and I really don't know why

Tell us what’s happening:

Your code so far


<style type='text/sass'>

@mixin border-radius ($x,$y,$radius,$z){
-webkit-border-radius: $x, $y, $radius, $z;
-moz-border-radius: $x, $y, $radius, $z;
-ms-border-radius: $x, $y, $radius, $z;
border-radius: $x, $y, $radius, $z;}

#awesome {
  width: 150px;
  height: 150px;
  background-color: green;
@include border-radius(0px,0px,15px,green);
}
</style>

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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 6.0.1; SM-N910C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.116 Mobile Safari/537.36.

Challenge: Create Reusable CSS with Mixins

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

You copied and pasted the CSS, but the CSS was for a different property (box-shadow).
The challenge says it only wants to pass in one value of 15px. You have four.

1 Like