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 trialChangjoon Song
Python Web Development Techdegree Student 8,092 PointsColumn shows opposite display of the % I entered...
I just entered the codes as the video has show, but my columns are showing opposite display size.
.design-selection { float: left; width 60%; font-size: italic; box-sizing: border-box; border-right: 1px solid #47495d; }
.design-archives, .zen-resources { display: inline-block; width: 40%; }
1 Answer
KRIS NIKOLAISEN
54,971 PointsPassing your code through a validation service shows two errors:
.design-selection Value Error : width Parse Error 60%
.design-selection Value Error : font-size italic is not a font-size value : italic
The first error you are missing a colon between width and 60%. The second is the property should be font-style instead of font-size.
Changjoon Song
Python Web Development Techdegree Student 8,092 PointsChangjoon Song
Python Web Development Techdegree Student 8,092 PointsHaha, that was silly of me. No wonder it wasn't working. Thank you!