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
steve liebenberg
1,530 PointsCSS text-shadow blur not working in chrome on mac?
Anyone have this problem. Any solutions? 0 works for blur value.... nothing else does.
h1 {
font-size: 5.625rem; /* 90px/16px */
color: rgba(255, 255, 255, 1);
text-transform: uppercase;
font-weight: normal;
line-height: 1.3;
text-shadow: 0 1px 1px rgba: 0,0,0, .8;
}
Thanks, S
2 Answers
Chris Jardine
13,299 PointsHi Steve
Try:
text-shadow: 0 1px 1px rgba(0,0,0, .8);
steve liebenberg
1,530 PointsThanks... there was an extra colon in there!
steve liebenberg
1,530 Pointssteve liebenberg
1,530 Pointstext-shadow: 0 1px 1px rgba: (0,0,0, .8);
Parenthesis added... still doesn't work!