Sử dụng lớp Bootstrap được làm tròn theo kiểu img để tạo kiểu cho hình ảnh của bạn và cung cấp cho hình ảnh các góc tròn:
Ví dụ
<!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://www.tutorialspoint.com/videotutorials/images/numerical_ability_home.jpg"> <h1>Rounded Image</h1> <img src = "https://www.tutorialspoint.com/videotutorials/images/numerical_ability_home.jpg" class = "img-rounded"> </body> </html>