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

Stephen Blank
Stephen Blank
16,286 Points

Can this be written better than it is?

I have a feeling it can be reduced to something better. Is there a way to only write body.front once?

body.front #content, body.front .region-sidebar-first { margin-top: 0; }

1 Answer

Erwin Meesters
Erwin Meesters
15,088 Points

You can try googling on less, scss or sass. These are stylesheet scripting languages that are compiled or interpreted into css. Your example in scss becomes:

body {
  &.front {
   #content, .region-sidebar-first { 
      margin-top: 0; 
     }
  }
}

this compiles to:

body.front #content, 
body.front .region-sidebar-first { 
  margin-top: 0; 
}

There is a lot more possible, so take a look at less, or sass.