+ 6
How to create responsive images ? Some easy explanations to understand would be helpful
responsive website design
4 Respostas
+ 7
Check these links to get more detailled stuff about responsive images:
https://www.w3schools.com/css/css_rwd_images.asp
https://css-tricks.com/responsive-images-css/
https://alistapart.com/article/responsive-images-in-practice
... and so more by googling "responsive images" ;P
+ 6
Thanks a lot @Calvin
+ 6
Thanks @visph
+ 4
img {
width: 100%;
height: auto;
max-width: 2000px; /* add this to the actual image width */
}