- Get link
- X
- Other Apps
Breakpoints
Breakpoints are customizable widths that determine how your responsive layout behaves across device or viewport sizes in Bootstrap.@media only screen and (min-width: 768px) {
/* Styles for screens with a minimum width of 768 pixels (tablets and larger) */
}
Tablets:
@media only screen and (min-width: 600px) and (max-width: 767px) { /* Styles for screens between 600 and 767 pixels (tablets) */ }
@media only screen and (min-width: 600px) and (max-width: 767px) { /* Styles for screens between 600 and 767 pixels (tablets) */ }
Smartphones:
@media only screen and (max-width: 599px) { /* Styles for screens with a maximum width of 599 pixels (smartphones) */ }
- Get link
- X
- Other Apps
Comments
Post a Comment