flamey
1
Tell us what’s happening:
The last two challenges are giving me a hard time someone give a hand
Your code so far
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A207F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Mobile Safari/537.36
.
Challenge: Build a Tribute Page
Link to the challenge:
ILM
2
what kind of help do you need?
what your code?
what do the tests say?
flamey
3
The test says the img element should responsive resize relative to the width of the parent element without exceeding its original size
try to use max-width:100%, width:100% on image, it should be responsive, 100% width and never exceed parent size even if image is 100%.
flamey
5
my code so far
img{
max-width:100%;
width:100%;
}
but its not passing
ILM
6
below the failing test there is a block, the first line usually tells why the test is not passing, try looking there
if you want more help you will need to share your code
flamey
7
i passed the test thank you all
*{
box-sizing: border-box;
}