Web-TechnologienProf. Dr. Christoph Meinel

This video belongs to the openHPI course Web-Technologien. Do you want to see more?

4.4 CSS-Präprozessoren

Time effort: approx. 11 minutes

An error occurred while loading the video player, or it takes a long time to initialize. You can try clearing your browser cache. Please try again later and contact the helpdesk if the problem persists.

About this video


Errata:

Folie4

Aus

$primary-color: #333;
h1 {
  color: $primary-color;
}
a {
color: $primary-color; text-decoration: none;
}

wird natürlich

h1 {
  color: #333;
}
a {
color: #333; text-decoration: none;
}

und nicht

body {
  color: #333;
}
a {
color: #333; text-decoration: none;
}