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 Compass Basics Getting Started with Compass Getting Started with Compass

To display the gradient in browsers that do not support CSS gradients, use a configuration variable to set support for S

I write this is code and Bummer!

/* Write your SCSS code below. */

// Imports @import "compass/css3"; @import "compass/support"

// Variables

// Page Styles

body { $experimental-support-for-svg: true; @include background(linear-gradient(#3d69b5, #1a335e)); }

Zeljko Porobija
Zeljko Porobija
11,491 Points

Do not put this in the body block, but under the //Variables.

1 Answer

Fernando Vidoto
Fernando Vidoto
10,358 Points

I got this way:

body {
  @include background(linear-gradient(#3d69b5, #1a335e));
  $experimental-support-for-svg: true;
}