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 trialDanilio Moreno
929 PointsWork Spaces not showing my work.
I'm on Web Design: Responsive Web Design Section Build a Three Column Layout.
I have double checked my work 10 times but when I refresh workspaces my work does not show up please help!!!!
Responsive css:
@media screen and (min-width: 480px) {
/************************
Two Column Layout
**************************
#primary {
width: 50%;
float: left;
}
#secondary {
width: 40%;
float: right;
}
Contact html: <section id="primary">
<section id="secondary"?
Danilio Moreno
929 Points@media screen and (min-width: 480px) {
/****************************
TWO COLUMN LAYOUT
*****************************/
#primary {
width: 50%;
float: left;
}
#secondary {
width: 40%
float: right;
}
}
<section id="primary">
<section id="secondary">
3 Answers
Kristopher Van Sant
Courses Plus Student 18,830 PointsYour css is commented out which means the browser ignores it. A CSS comment starts with /* and ends with */. You forgot the last /.
/************************
Two Column Layout
**************************/
Hope that helps!
Danilio Moreno
929 PointsThanks! Corrected it but still work spaces will not show my work.
Danilio Moreno
929 PointsI uninstalled then reinstalled google chrome.....seems to have solved the problem.
Kristopher Van Sant
Courses Plus Student 18,830 PointsOh weird, but awesome that you got it working!!
Danilio Moreno
929 PointsDanilio Moreno
929 Points