我真的很想增加我博客上的图像大小。目前,图像非常小。
我的主题是使用 960 网格系统,我无法弄清楚如何增加图像大小。我的 960 网格系统看起来像这样
/* Standard 960px ----------- */
.grid_1 { width:48px; }
.grid_2 { width:128px; }
.grid_3 { width:208px; }
.grid_4 { width:588px; }
.grid_5 { width:368px; }
.grid_6 { width:448px; }
.grid_7 { width:528px; }
.grid_8 { width:960px; }
.grid_9 { width:688px; }
.grid_10 { width:768px; }
.grid_11 { width:848px; }
.grid_12 { width:960px; }
.column { margin:0 16px 0 16px; overflow:hidden; float:left; display:inline; }
.row { margin:0 auto; width:960px; overflow:hidden; }
.row .row { margin:0 -16px 0 -16px; width:auto; display:inline-block; }
在我的 CSS 中,控制图像的唯一方法是在
.posts .post.photo div img{
height: auto;
max-width: 100%;
vertical-align:bottom;
}
但是当我为此添加宽度和高度时,图像会失真。有什么办法可以让图像变大而不扭曲它们?
这是完整 CSS 的链接 - http://jsfiddle.net/x8P6w/