如何使用 CSS 縮小影像以使影像響應式
若要使影像響應式,可以嘗試執行以下程式碼
示例
<!DOCTYPE html> <html> <head> <style> img { max-width: 100%; height: auto; } </style> </head> <body> <img src = "https://tutorialspoint.tw/videotutorials/images/coding_ground_home.jpg" alt = "Online Compiler" width = "300" height = "300"> </body> </html>
廣告