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 CSS Basics (2014) Enhancing the Design With CSS Adjusting the Layout with Media Queries

Is initial-scale not needed?

Does <meta name="viewport" content="width=device-width"> do the same thing as <meta name="viewport" content="width=device-width, initial-scale=1">?

1 Answer

Anwar Montasir
STAFF
Anwar Montasir
Treehouse Teacher

Hi Megan,

As of February 19, 2021, the MDN article Using the viewport meta tag to control layout on mobile browsers still recommends writing your viewport meta tag as

<meta name="viewport" content="width=device-width, initial-scale=1">

You're using initial-scale=1 to fight the tendency by mobile browsers to automatically zoom out when encountering web layouts, a tendency that dates back to the initial launch of the iPhone. Back then, very few websites were mobile-optimized, so mobile browsers accounted for this by zooming out automatically. This behavior continues today since not all web pages are mobile-friendly.