scrimba
React Full Course
Styling React with css Classes
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

Styling React with css Classes
by
AboutCommentsNotes
Styling React with css Classes
by
Expand for more info
style.css
run
preview
console
body { 
margin: 0;
padding: 0;
}
.navbar {
background-color: #333;
color: whitesmoke;
display: flex;
font-size: 20px;
justify-content: center
}
.maincontent {
background-color: whitesmoke;
display: flex;
justify-content: center;
}
.name {
color: #333;

}
.about {
color: #333;
}
.footer {
background-color: orange;
display: flex;
color: whitesmoke;
height: 100px;
justify-content: center;
}
Console
/index.html
LIVE