I keep having an issue with passing the test for the tribute page by one error. The error is as follows:
Try using the “max-width” style property : expected ‘none’ to not equal ‘none’
and the link is as follows:
https://codepen.io/terrance_darden/pen/OJLjvME?editors=1100.
OJL
2
Hello
replace your
#image { ... } in your css file with this code :
#image {
display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
max-width: 100%;
height: auto;
}
Thank you ossama-Jlassi! I feel so dumb lol, i figured it was something a little more simpler than what I thought.
OJL
4
Good Luck in your learning path.