Web-TechnologienProf. Dr. Christoph Meinel

本视频属于openHPI课程Web-Technologien。你想看更多吗?

4.4 CSS-Präprozessoren

时间效果趋于.11 分钟

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.

关于这个视频


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;
}