I have a codepen here.
If I press F12 and check the mobile layout on liveview, the text appears correctly centered, and horizontal scroll is disabled.
On moving to code sandbox:
- text is no longer correctly centered,
- picture is incorrectly sized,
- horizontal scrolling appears.
Mobile display is not working in the chrome devtools emulator:
I’ve made sure to add all libraries, include autoprefixer, and normalize.css. Also included the correct meta tags.
<meta name="viewport" content="width=device-width, initial-scale=1">
Media queries are all included.
@media screen and (max-width: 768px) and (min-width: 485px) {
form {
max-width: 70%;
}
}
Is there anything else I’ve missed?