如何使用 CSS 缩小图像以使图像响应式
若要使图像响应式,可以尝试运行以下代码
示例
<!DOCTYPE html> <html> <head> <style> img { max-width: 100%; height: auto; } </style> </head> <body> <img src = "https://tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt = "Online Compiler" width = "300" height = "300"> </body> </html>
广告