Is there a way to adjust the size of my col-lg based on different screen resolutions?
I'm looking for a solution that can change the size of col-lg depending on the screen resolution. For example:
.col-lg-3 {
/* styles for screens with 1366x768px resolution */
}
@media screen and (min-width: 1920px) and (min-height: 1080px) {
.col-lg-3 {
/* apply these styles for screens larger than or equal to 1920px by 1080px */
}
}