Test your skills: Selectors
The aim of this skill test is to assess whether you understand CSS selectors.
Note: You can try solutions in the interactive editors on this page or in an online editor such as CodePen, JSFiddle, or Glitch.
If you get stuck, you can reach out to us in one of our communication channels.
Task 1
In this task, use CSS to do the following things, without changing the HTML:
- Make
<h1>
headings blue. - Give
<h2>
headings a blue background and white text. - Cause text wrapped in a
<span>
to have a font-size of 200%.
Your final result should look like the image below:
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Task 2
In this task, we want you to make the following changes to the look of the content in this example, without changing the HTML:
- Give the element with an id of
special
a yellow background. - Give the element with a class of
alert
a 1px grey border. - If the element with a class of
alert
also has a class ofstop
, make the background red. - If the element with a class of
alert
also has a class ofgo
, make the background green.
Your final result should look like the image below:
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Task 3
In this task, we want you to make the following changes without adding to the HTML:
- Style links, making the link-state orange, visited links green, and remove the underline on hover.
- Make the first element inside the container font-size: 150% and the first line of that element red.
- Stripe every other row in the table by selecting these rows and giving them a background color of #333 and foreground of white.
Your final result should look like the image below:
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Task 4
In this task, we want you to do the following:
- Make any paragraph that directly follows an
<h2>
element red. - Remove the bullets and add a 1px grey bottom border only to list items that are a direct child of the ul with a class of
list
.
Your final result should look like the image below:
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.
Task 5
In this task, add CSS using attribute selectors to do the following:
- Target the
<a>
element with atitle
attribute and make the border pink (border-color: pink
). - Target the
<a>
element with anhref
attribute that contains the wordcontact
somewhere in its value and make the border orange (border-color: orange
). - Target the
<a>
element with anhref
value starting withhttps
and give it a green border (border-color: green
).
Your final result should look like the image below:
Try updating the live code below to recreate the finished example:
Download the starting point for this task to work in your own editor or in an online editor.