我计划为站点使用网格系统,但我希望能够有选择地打破网格。例如,这意味着将OOCSS size1of2
转换为size1of1
)。理想情况下,html 看起来像这样:
<div class="line">
<div class="unit size1of2 respond-480">
<h3>1/2</h3>
<p>Lorem ipsum dolor sit amet...</p>
</div>
<div class="unit size1of2 respond-480 lastUnit">
<h3>1/2</h3>
<p>Lorem ipsum dolor sit amet...</p>
</div>
</div>
然后我会有类似以下css的东西:
@media screen and (max-device-width: 480px) {
.respond-480 {
/* something to linearize the box */
}
}
有谁知道用 OOCSS 或其他网格系统来做到这一点的方法?我正在寻找这种级别的控制,而不是更简单的响应式网格。