Curriculum
Course: CSS Advanced
Login

Curriculum

CSS Advanced

CSS Rounded Corners

0/1

CSS Border Images

0/1

CSS Color Keywords

0/1

CSS Text Effects

0/1

CSS 2D Transforms

0/1

CSS 3D Transforms

0/1

CSS Transitions

0/1

CSS Animations

0/1

CSS Tooltip

0/1

CSS Style Images

0/1

CSS Image Reflection

0/1

CSS Masking

0/1

CSS Buttons

0/1

CSS Multiple Columns

0/1

CSS User Interface

0/1

CSS Box Sizing

0/1

CSS Media Queries

0/1
Text lesson

Variables in Media Queries

Using Variables in Media Queries

Now, we aim to modify the value of a variable within a media query.

Hint: Media Queries involve establishing distinct style rules tailored for various devices such as screens, tablets, and mobile phones. Delve deeper into Media Queries through our dedicated chapter on the subject.

In this example, we initially define a new local variable called –fontsize within the .container class, assigning it a value of 25 pixels. Subsequently, we utilize this variable within the .container class later in the code. Following that, we introduce a @media rule specifying that “When the browser’s width is 450px or wider, alter the value of the –fontsize variable within the .container class to 50px.”

Here’s the full example:

Example 

:root {
  –blue: #1e90ff;
  –white: #ffffff;
}

.container {
  –fontsize: 25px;
}

/* Styles */
body {
  background-color: var(–blue);
}

h2 {
  border-bottom: 2px solid var(–blue);
}

.container {
  color: var(–blue);
  background-color: var(–white);
  padding: 15px;
  font-size: var(–fontsize);
}

@media screen and (min-width: 450px) {
  .container {
    –fontsize: 50px;
  
}
}

Here’s another instance where we additionally modify the value of the –blue variable within the @media rule:

Example 

/* Variable declarations */
:root {
  –blue: #1e90ff;
  –white: #ffffff;
}

.container {
  –fontsize: 25px;
}

/* Styles */
body {
  background-color: var(–blue);
}

h2 {
  border-bottom: 2px solid var(–blue);
}

.container {
  color: var(–blue);
  background-color: var(–white);
  padding: 15px;
  font-size: var(–fontsize);
}

@media screen and (min-width: 450px) {
  .container {
    –fontsize: 50px;
  
}
   :root {
    –blue: lightblue;
  
}
}

Browser Support

The numbers in the table indicate the initial browser version that provides full support for the var() function.

Image