scrimba
Kodekurs for ungdoms- og videregående skoler
Lær CSS
Ekspert-tips: Del inn teksten i kolonner med CSS
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Ekspert-tips: Del inn teksten i kolonner med CSS
AboutCommentsNotes
Ekspert-tips: Del inn teksten i kolonner med CSS
Expand for more info
index.css
run
preview
console
* {
margin: 0;
padding: 0;
}

body {
font-family: Georgia, 'Times New Roman', Times, serif;
padding: 16px;
}

h1, h2 {
text-align: center;
margin-bottom: 32px;
}

p {
line-height: 1.6;
}
Console
index.html
-2:14