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