CSS Media Rule Based on Screen Sizes

11 months ago

< 1 min read

Posted by:

Focus

Subscribe to newsletter

By subscribing you agree to with our Privacy Policy.

Share

This is very helpful for limiting custom CSS to certain breakpoints. Usage examples are Scrollbar, Offset Slides and Offset Carousel Posts. Modify the breakpoints (the ones in px) to your needs.

Desktop & Tablet Only

@media only screen
and (min-device-width: 767px)
{

}



Mobile Only

@media only screen
and (max-device-width: 767px)
{

}



Example

/* WordPress Default Code Block Styling */
@media only screen
and (min-device-width: 767px)
{
.wp-block-code code {
	font-size: 17px}
}

@media only screen
and (max-device-width: 767px)
{
.wp-block-code code {
	font-size: 15px}
}

Read more

See How It Works

Create better websites, faster.

Download the Entire Library

Adaptative, neutrally designed components.

Customer Service

Focus Website

Today, September 8

Hi, there 👋

How can I help you?

Start Chat with:

We use cookie to improve your experience on our site. By using our site you consent cookies.