I need my col-lg to have a different size depending on the resolution, for example:
How can this be done?
.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 */
}
}