Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Sass Basics Write Smart and Efficient CSS with Sass Write a Sass Function

Write a function, called px-to-rem, that accepts the parameters $target and $context. Set the default value of $context

How can I get this to work??

$base-font-size: 16px;
$context: $base-font-size;

// Write your function here
@function px-to-rem($target, $context){

}
´´´

```style.scss
$base-font-size: 16px;

// Write your function here
@function px-to-rem($target, $context){

}

2 Answers

Lee Ravenberg
Lee Ravenberg
10,018 Points

Hi Philip,

The assignment is to set a default value for $context.

$base-font-size: 16px;
@function px-to-rem($target, $context: $base-font-size){

}

By writing $context: $base-font-size you are telling the compiler that if the px-to-rem() is called without the second $context argument, that it should default back to $base-font-size. Which is a variable defined as 16px. Cool huh?

It sure is cool. Thanks man, that helped me a lot.

I don't understand any of this. Sorry :/