VOOZH about

URL: https://www.geeksforgeeks.org/bootstrap/how-to-write-the-bootstrap-media-queries-for-very-large-screens/

⇱ How to write the bootstrap media queries for very large screens? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to write the bootstrap media queries for very large screens?

Last Updated : 23 Jul, 2025

To write Bootstrap media queries for very large screens, leverage the free, open-source CSS framework to ensure responsive design across various devices, including iPads, tablets, and mobiles. Use Bootstrap's built-in classes and customize properties with media queries to maintain a smooth UI regardless of screen size.

Media Queries for different screen sizes

The table below shows the bootstrap media queries for very large screens

Device Typemin-width in px
Small Devices like mobiles576px
Medium Devices like tablets768px
Large devices like Desktops992px
Very large or Extra large devices like large desktops1200px

Example: The example uses media queries and will add a property for background-color for very large screens. If the screen size is more than 1200px then the background-color is the above one and if the resolution is less then 1200px then its background-color will be none.

Output:

👁 responsiv
Output
Comment

Explore