关于后期图片中的wordpress自动样式,我最近几天摸不着头脑。这是后期图像的html源代码
<img width="240" height="180" src="http://example.com/wp-content/uploads/2017/05/my-first-image.jpg" class="attachment- size- wp-post-image" alt="My First Image Post" srcset="http://example.com/wp-content/uploads/2017/05/my-first-image.jpg" sizes="(max-width: 240px) 100vw, 240px" style="height: 107.5px;"><br><br>
wordpress如何计算此style="height: 107.5px;"
?
如果我希望这是style="height: 125.5px;"
我该怎么办?我试图覆盖此style="height: 107.5px;"
。但一切都是徒劳的。
答案 0 :(得分:1)
至于wordpress为style="height:107.5px"
计算和添加内联代码的原因,可能取决于你的主题。
作为问题的解决方案,请尝试将其添加到style.css
.article img {
height:125.5px !important;
}