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 trialAmaan Vaddadi
Front End Web Development Techdegree Student 3,750 PointsWidth property doesn't execute as shown in the video and hence my floats are not functioning as it should. help>??
Here's my snapshot:
2 Answers
Crossmedia Communicatiegroep
5,928 Points.resorts,
.tips,
{
width: 46.5%;
}
should be:
.resorts,
.tips
{
width: 46.5%;
}
Michael Stanaland
12,454 PointsDelete the comma at the end of line 144 (after .tips). it's a minor little thing, but it makes the rule invalid so the width isn't getting processed.