我想做3个图像效果是iOS,匹配引导效果:
http://getbootstrap.com/css/#images
我想出了圆角和圆圈- but..the框架其中一个难住了我。
“img-缩略图”-在图像周围创建一个灰色圆角矩形边框。
如何做到这一点?有没有库可以做到这一点?
Thx
发布于 2013-10-14 15:38:19
这很简单。它只是css边框。下面是来自bootstrap源代码的原始类代码。
.img-thumbnail {
display: inline-block;
height: auto;
max-width: 100%;
padding: 4px;
line-height: 1.428571429;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
https://stackoverflow.com/questions/19340426
复制相似问题