2

我想做3个图像效果是iOS匹配Bootstrap效果:

http://getbootstrap.com/css/#images

我想出了圆角和圆 - 但是..被框住的让我难过。

“img-thumbnail” - 在图像周围制作一个薄的灰色圆角矩形框。

如何才能做到这一点?有什么图书馆可以做到吗?

谢谢

4

1 回答 1

3

Its pretty simple. It's just css borders. Here is the original class code from the bootstrap source.

.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;
}
于 2013-10-14T07:38:18.960 回答