Search⌘ K
AI Features

Summary

Explore the core concepts of CSS, including how to use selectors to target HTML elements, apply cascading style rules, and utilize media queries to adapt styles for various devices. Understand how to separate structure from presentation and prepare to create visually appealing web pages.

We'll cover the following...

Cascading Style Sheets (CSS) is a fundamental technology to separate the structure of web pages (markup) from the visual styles the page is rendered with.


The basic idea behind this technology is simple: you define a selector that specifies a set of HTML nodes in the document tree of the page and assign values to a number of predefined visual properties.


A selector ...