Bootstrap 图片缩略图
要向图片添加缩略图,请使用 .img-thumbnail Bootstrap 类。
你可以尝试运行以下代码向图片添加缩略图
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Images</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <p>Styling images with Bootstrap</p> <h1>Original Image</h1> <img src = "https://tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg"> <h1>Thumbnail Image</h1> <img src = "https://tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" class = "img-thumbnail"> </body> </html>
广告