Tell us what’s happening:
How in the world do I complete this one? I’ve looked at the “Get a Hint” button/page, and it never helped me one bit. I’m so confused as I’ve never learned Sass before. I’m needing to learn it for school, as I’m trying my best to do great in school with coding and remembering it all.
Your code so far
<style type='text/sass'>
@mixin custom-mixin-name($offsetX, $offsetY, $blurRadius, $color) {
-webkit-border-radius: $offsetX, $offsetY, $blurRadius, $color;
-moz-border-radius: $offsetX, $offsetY, $blurRadius, $color;
-ms-border-radius: $offsetX, $offsetY, $blurRadius, $color;
text-shadow: $offsetX, $offsetY, $blurRadius, $color;
}
h2 {
@include custom-text-shadow(1px, 3px, 5px, #999999);
}
#awesome {
width: 150px;
height: 150px;
background-color: green;
}
</style>
<div id="awesome"></div>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36 Avast/73.0.1258.87
.
Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/create-reusable-css-with-mixins