Hello, I’m currently doing the “Mozilla Splash page” assessment. I can get everything to work except for the part with the responsive images. Here’s a snippet of my HTML doc:
> <a href=“Get Firefox for desktop — Mozilla (US) ”>
> <img srcset=“images/dino120.png 120w,
> images/dino400.png 400w”
> sizes=“(max-width: 480px) 120px,
> (min-width: 481px) 400px”
> src=“images/dino400.png” alt=“a red dinosaur head”>
> </a>
Is there anything wrong with my code? I can’t see any differences whenever I resize my browser.
I’ve not looked at this stuff for a while, but your code looks pretty reasonable.
Try comparing your code to the finished version here:
https://mdn.github.io/learning-area/html/multimedia-and-embedding/mdn-splash-page-finished/
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mozilla splash page</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<style>
/* header and body setup */
html {
font-family: 'Open Sans', sans-serif;
background: url(pattern.png);
}
body {
width: 100%;
max-width: 1200px;
margin: 0 auto;
background-color: white;
This file has been truncated. show original
One reason that might be causing a problem is that if you are using a very hi res screen, the browser might load up the larger image even at the narrow width, so that it start looks sharp, and not fuzzy.
1 Like