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 trial

CSS Responsive Layouts Media Queries Media Query Review

SeHyun Choi
SeHyun Choi
3,441 Points

How to center nav at @media (min-width:480px)

Hi, I am trying to recreate the tutorial web for practice. I want the Nav to be centered at 480px width but I can't seem to figure it out. Please help.

@media (min-width:480px) {

.title {
    text-align:left;

}



nav li {
    float:left;
    margin-bottom:0;
    margin-right:30px;
}

1 Answer

Steven Parker
Steven Parker
229,732 Points

Floats complicate alignment. But one approach might be to give your nav element the "display: inline-block;" property, and enclose it in a container that has the "text-align: center;" property.