我有这部分 less 和 html 标记:
<div class="block">
<div class="post-image"></div>
<p></p>
</div>
和
.post-image {
display: inline-block;
width: 35%; height: 80px;
&.photo {
width: 100%; height: 180px;
}
}
p {
width: 64%;
display: inline-block;
when (isstring .post-image.photo) {
width: 100%;
}
我知道这是错误的设置,但我只是想知道,有没有可能p
通过照片宽度或类别来附加此段落()样式?非常感谢您的帮助。