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 CSS3 without the Vendor Prefixes

Michael Wiss
Michael Wiss
19,233 Points

linear-gradient compass mixin

/* Write your SCSS code below. */

// Imports
@import "compass/css3"
// Variables


// Page Styles
body {
@include background(linear-gradient(top left, #3d69b5, #1a335e));
  }

The above code is not passing. What am I missing? Thanks

2 Answers

Hi Michael, You need to omit the top left, from your code to leave

body {
 @include background(linear-gradient(#3d69b5,#1a335e));
}

That should do the trick.