用 BootStrap 为图片添加样式


Bootstrap 提供以下类来为图片添加样式

  •  .img-rounded − 添加 border-radius:6px 使图片具有圆角。
  •  .img-circle − 通过添加 border-radius:500px 使整个图片变圆。
  •  .img-thumbnail − 添加一些填充和灰色边框

您可以尝试运行以下代码为图片添加样式

示例

现场演示

<!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>
      <img src = "/bootstrap/images/download.png" class = "img-rounded">
      <img src = "/bootstrap/images/download.png" class = "img-circle">
      <img src = "/bootstrap/images/download.png" class = "img-thumbnail">
   </body>
</html>

更新时间:2020-06-12

630 次浏览

开启 职业生涯

通过完成课程获得认证

入门
广告