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 trialValentin Rosu
9,217 PointsTo 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)); }
1 Answer
Fernando Vidoto
10,358 PointsI got this way:
body {
@include background(linear-gradient(#3d69b5, #1a335e));
$experimental-support-for-svg: true;
}
Zeljko Porobija
11,491 PointsZeljko Porobija
11,491 PointsDo not put this in the body block, but under the //Variables.