我目前正在使用此CSS来使我的博客图片符合我的博客区域和博客文章的确切宽度。我不确定这是否是最佳解决方案,因为我偶尔会出现一些问题。
.post-body img {
width: 761px!important;
height: auto!important;
padding: 0 !important;
border: none !important;
background: none !important;
}
有更好的方法吗?在此先感谢:)
答案 0 :(得分:0)
尝试一次。不确定。但为我工作
.post-body > img{
width:100%;
height: auto;
}
答案 1 :(得分:0)
< IMG>标签应该有这样的声明(响应代码)。
.post-body img {
max-width:100%;
height:auto;
}
但是,您必须检查是否存在可能影响图像显示的其他CSS规则,包括图像本身及其父母。 考虑到:
所以假设例如后体在两侧有一个13px的填充,最后你可能有这样的东西:
.post-body img {
max-width:100%;
height:auto;
margin:0 -13px;
border:0;
padding:0;
}