Universal Selector

The first selector we will focus on is the universal selector *. This selector selects every HTML element. Example:

* {
	color: pink;
}

This code changes the color of all HTML elements to pink.

Instructions

In the style.css file, create a rule that sets the color of all elements to orange.

Start programming for free

By signing up, you agree to the Terms of Service and Privacy Policy.

Or sign up with:

2/12

Universal Selector | Start Coder