-3

我需要我的 col-lg 根据分辨率具有不同的大小,例如:

如何才能做到这一点?

.col-lg-3 {
    /* styles for 1366x768px screen */
}
@media screen and (min-width: 1920px) and (min-height: 1080px) {
    .col-lg-3 {
        /* styles for screens larger than or equal to 1920px by 1080px */
    }
}
4

1 回答 1

2

我建议您查看 Bootstrap Grid System,因为这将帮助您更好地了解col各种屏幕尺寸的工作原理。

https://getbootstrap.com/docs/4.0/layout/grid/#grid-options

于 2018-04-20T15:40:32.217 回答