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 Advanced Sass Advanced Directives Using the @each Directive

Drew Butcher
Drew Butcher
33,160 Points

Same Code doesn't work in Sass 3.4.7

This same code will give a similar output but with

content: "";

Ken Alger
Ken Alger
Treehouse Teacher

Dr. Butcher;

Perhaps it is a result of the time change, but I am not sure I understand your question, comment, or concern.

Ken

2 Answers

Kiyomi Li
Kiyomi Li
22,436 Points

I'm having the same problem. So rather than:

<html>

.icon-strategy:after { content: "\e002"; }

.icon-twitter:after { content: "\e003"; }

.icon-github:after { content: "\e004"; } </html>

I am getting:

<html> @charset "UTF-8"; .icon-strategy:after { content: ""; }

.icon-twitter:after { content: ""; }

.icon-github:after { content: ""; } </html>

Kiyomi Li
Kiyomi Li
22,436 Points

if you convert the sassmeister to sass 3.3 it works fine.