Skip to content

Commit

Permalink
Change Color in rgb() style
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfaizankhan committed May 26, 2024
1 parent 5b7aec5 commit 21abbf1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Colored Markers/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ h1 {
}

.one {
background-color: red;
background-color: rgb(255, 0, 0);
}

.two {
background-color: green;
background-color: rgb(0, 255, 0);
}

.three {
background-color: blue;
background-color: rgb(0, 0, 255);
}

.container {
background-color: rgb(0, 0, 0);
}

0 comments on commit 21abbf1

Please sign in to comment.