- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Media Queries
Media queries in CSS allow you to apply styles based on various device characteristics such as screen width, height, orientation, and resolution. They are a key tool for creating responsive web designs that adapt to different devices and screen sizes. Here's a comprehensive guide on using media queries in CSS:
Basic Syntax
Media queries are written using the @media rule followed by a media type or media feature, and a set of CSS rules inside curly braces {}. The general syntax is:
@media media-type and (media-feature) {
/* CSS rules */
}
Media Types
- All: all (default, for all devices).
- Print: print (for printers and print preview).
- Screen: screen (for computer screens, tablets, smartphones, etc.).
- Speech: speech (for screen readers and speech synthesizers).
Media Features
Media features allow you to specify conditions such as screen width, height, orientation, resolution, etc. Some common media features include:
- Width: min-width, max-width
- Height: min-height, max-height
- Orientation: orientation: landscape, orientation: portrait
- Resolution: min-resolution, max-resolution
- Aspect Ratio: min-aspect-ratio, max-aspect-ratio
- Device Aspect Ratio: min-device-aspect-ratio, max-device-aspect-ratio
- Color: min-color, max-color
- Monochrome: monochrome
- Grid: grid
- Pointer: pointer
Example Usage
Responsive Layout
/* Styles for all screens */
.container {
width: 100%;
}
/* Styles for screens with minimum width of 768px */
@media screen and (min-width: 768px) {
.container {
max-width: 768px;
margin: 0 auto;
}
}
Responsive Typography
/* Default font size */
body {
font-size: 16px;
}
/* Larger font size for screens with minimum width of 768px */
@media screen and (min-width: 768px) {
body {
font-size: 18px;
}
}
Responsive Images
/* Style for all images */
img {
max-width: 100%;
height: auto;
}
/* Style for larger screens with minimum width of 1200px */
@media screen and (min-width: 1200px) {
img {
max-width: 1200px;
}
}
Combining Media Features
You can combine multiple media features using logical operators and, or, and not to create complex conditions:
/* Example of combining media features */
@media screen and (min-width: 768px) and (orientation: landscape) {
/* Styles for landscape orientation on screens with minimum width of 768px */
}
Browser Support
Media queries are widely supported in modern browsers, including Chrome, Firefox, Safari, Edge, and Opera. They provide a flexible and effective way to create responsive designs for different devices and screen sizes.
Conclusion
Media queries are essential for building responsive and adaptive web designs that work well across various devices and screen resolutions. By using media queries effectively, you can create layouts, typography, and styles that adjust and optimize based on the user's device capabilities and preferences.