Home > Article > Web Front-end > How to shrink an image using CSS to make it responsive
To make the image responsive, you can try running the following code:
Live Demo
<!DOCTYPE html> <html> <head> <style> img { max-width: 100%; height: auto; } </style> </head> <body> <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt = "Online Compiler" width = "300" height = "300"> </body> </html>
The above is the detailed content of How to shrink an image using CSS to make it responsive. For more information, please follow other related articles on the PHP Chinese website!