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

Code returns invalid CSS

So I'm pretty sure the syntax is correct, but it still returns an error? The question is as follows:

Next, use a mixin to give body a linear-gradient background. Make the start color #3d69b5 and the end color #1a335e.

Any advice is much appreciated!

sass/style.scss
/* Write your SCSS code below. */

// Imports
@import "compass/css3"

// Variables


// Page Styles

body{
@include background(linear-gradient(#3d69b5,#1a335e));
}
index.html
<!DOCTYPE html>
<html>
<head>
  <title>My Compass Project</title>
  <link href="stylesheets/style.css" rel="stylesheet">
</head>
<body>
  <div class="main-logo"></div>
</body>
</html>

1 Answer

I think it just needs space between the two values

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