0

大家好,使用推特引导程序:http: //twitter.github.io/bootstrap/base-css.html#tables

我正在徘徊如何阻止这种情况发生:http: //img823.imageshack.us/img823/6606/screenshotfrom201306071.png 我希望图像随窗口调整大小,直到它从 bootsrap 的文本上方凸出。

链接: http: //www.prxa.info/articles/category/1用户:test.prxa。通过:测试

我需要图像最大为 350 像素,因为人们包含的一些图像很大,必须调整大小以免弄乱。

这是缩略图区域和内部图像的自定义 css:

.thumbnail
{
    width: 350px;
    height: 220px;
    display: table-cell; 
    vertical-align: middle;
}

img.tagline-img
{
    max-width: 350px;
    max-height: 220px;
}
4

2 回答 2

0

您在 Firefox 中的网站,宽度:100%不是最好的响应技术,但它会使其适合

只需使用

img.tagline-img { 
   width:100%;
}

刚刚在您的网站上测试过

于 2013-06-07T19:48:29.150 回答
0

取自引导程序:

img{
    border:0;
    max-width:100%; /* Part 1:Set a maxium relative to the parent */
    width:auto\9; /* IE7-8 need help adjusting responsive images */
    height:auto; /* Part 2:Scale the height according to the width,
        otherwise you get stretching */
-ms-interpolation-mode:bicubic
}
于 2013-06-07T19:51:06.210 回答