详解Bootstrap四种图片样式_Javascript教程-查字典教程网
详解Bootstrap四种图片样式
详解Bootstrap四种图片样式
发布时间:2016-12-30 来源:查字典编辑
摘要:在本章中,我们将学习Bootstrap对图片的支持。Bootstrap提供了四个可对图片应用简单样式的class,分别是:img-round...

在本章中,我们将学习 Bootstrap 对图片的支持。Bootstrap 提供了四个可对图片应用简单样式的class,分别是:

img-rounded 添加 border-radius:6px 来获得图片圆角

img-circle 添加 border-radius:50% 来让整个图片变成圆形

img-thumbnail 添加一些内边距(padding)和一个灰色的边框

img-responsive 图片响应式

1、img-rounded

<!doctype html> <html lang="en"> <head> <> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="Keywords" content="关键词一,关键词二"> <meta name="Description" content="网站描述内容"> <meta name="Author" content="Yvette Lau"> <meta name = "viewport" content = " width = device-width, initial-scale = 1 "> <title>BootstrapDemo</title> <> <link rel="stylesheet" type="text/css" href="../bootstrap-3.3.5-dist/css/bootstrap.min.css"> </head> <body> <div class = "container"> <img src = "5.jpg" > </div> </body> </html>

.img-rounded{border-radius:6px;}

效果:

2、img-circle

<body> <div class = "container"> <img src = "5.jpg" > </div> </body>

.img-circle{border-radius:50%;}

效果(因为本图片的宽高大小不同,所以呈现出椭圆,如果将width和height设置相同,那么会呈现出一个圆):

3、img-thumbnail

<body> <div class = "container"> <img src = "5.jpg" > <img src = "4.jpg" > <img src = "3.jpg" > </div> </body>

.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;

background-color:#FFF;border:1px solid #DDD;border-radius:4px;transition:all 0.2s ease-in-out;}

效果:

4、img-responsize

<body> <div class = "container" style = "width:150px;"> <img src = "5.jpg" width="400px" > </div> </body>

.img-responsive{display:block;max-width:100%;height:auto;}

效果(img中的width属性值被忽略):

以上内容分步骤给大家介绍了Bootstrap四种图片样式的相关知识,希望大家喜欢。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类