Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara CSS | Basic Introduction
Introduction to CSS Part I

bookCSS

CSS, or Cascading Style Sheets, is a style sheet language used to describe a document's look and formatting in a markup language. It is most commonly used to style web pages written in HTML and XHTML but can also be applied to any XML document, including SVG and XUL.

For example, the following CSS code defines a style for a heading element, specifying that it should be displayed in a bold, 24-point font:

h1 {
  font-weight: bold;
  font-size: 24pt;
}

To apply this style to a heading element on a web page, we simply need to include the appropriate HTML tag and specify the class or id of the style we want to use, like so:

<h1 class="heading">My Heading</h1>

We can use a class selector to apply the above style to any element with a class of heading, like so:

.heading {
  font-weight: bold;
  font-size: 24pt;
}

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 1

Chieda ad AI

expand

Chieda ad AI

ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

Suggested prompts:

Mi faccia domande su questo argomento

Riassuma questo capitolo

Mostri esempi dal mondo reale

Awesome!

Completion rate improved to 5.26

bookCSS

Scorri per mostrare il menu

CSS, or Cascading Style Sheets, is a style sheet language used to describe a document's look and formatting in a markup language. It is most commonly used to style web pages written in HTML and XHTML but can also be applied to any XML document, including SVG and XUL.

For example, the following CSS code defines a style for a heading element, specifying that it should be displayed in a bold, 24-point font:

h1 {
  font-weight: bold;
  font-size: 24pt;
}

To apply this style to a heading element on a web page, we simply need to include the appropriate HTML tag and specify the class or id of the style we want to use, like so:

<h1 class="heading">My Heading</h1>

We can use a class selector to apply the above style to any element with a class of heading, like so:

.heading {
  font-weight: bold;
  font-size: 24pt;
}

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 1
some-alt