I have css in my html code such as this:
<img src="" style="width:500px;">
I want the image to be large on normal desktop/laptop screens.
But I want the image to be responsive on mobile.
I've got img in my css file set to width:100% at a certain screen resolution but my inline css code above seems to override my css in the styles file.
@media screen and (max-width: 720px) {
.container .row p img {
width:100%;
}
}
Any ideas?