Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 3: Web Design with Cascading Style Sheets (CSS)!

Instruction

Combination Selectors

Combination selectors let you apply styles to specific groups or combinations of selectors.

Class within an Element: Targets elements with a specific class within a certain type of tag.

ul.speakers { list-style-type: square; }

Example: Only <ul> elements with the class speakers will use square bullets.

Multiple Selectors: Allows you to apply the same sty...