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 trialTimothy Kiefer
6,082 PointsChrome update or something? Not appearing the same.
When I use the code provided in the project files, I don't get anything unless a shape is provided in the radial gradient, and when I do, I get a circle not a box.
thanks!
Tim
1 Answer
Antoine Boillot
10,466 PointsHey,
That's normal : the project file you can download is a bit different from the one in the video.
In the one you download, there is a
border-radius: 50%;
property that makes your shape a circle.
Just delete this line, and you'll have the same result as the one in the video.
Hope this helps.
Cheers,
Frank Meza
8,393 PointsFrank Meza
8,393 PointsHey Tim,
Are you using the right vendor prefix for your own browser? Ex. I use Chrome so even when I am coding in the challenges, I must use the -webkit- prefix, such as -webkit-radial-gradient: and so on.