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 trialMaster Mind
4,826 PointsCCS Code, if you need it.
div.todo_list { border: 1px solid #eee; border-radius: 4px; margin: 1em 0 1em 0; padding: 2em;
ul.functions { margin: 1em 0 0 0; padding: 0; float: left; list-style: none; font-size: 0.8em; clear: both;
li {
margin: 0 1em 0 0;
padding: 0;
float: left;
}
} }
3 Answers
Geoffrey Emerson
18,726 PointsHere it is in a slightly easier to copy form:
div.todo_list {
border: 1px solid #eee;
border-radius: 4px;
margin: 1em 0 1em 0;
padding: 2em;
ul.functions {
margin: 1em 0 0 0;
padding: 0;
float: left;
list-style: none;
font-size: 0.8em;
clear: both;
li {
margin: 0 1em 0 0;
padding: 0;
float: left;
}
}
}
Kosuke Kondo
1,235 PointsThanks! :)
Jason Foster
26,231 PointsToo kind. Thank you.
Vinny Harris-Riviello
11,898 PointsBig thanks
Anna K
17,115 PointsThanks!
Carlos Reyes
30,056 PointsCarlos Reyes
30,056 Pointsyeah! Ty Master Mind