Skip to content

Commit

Permalink
Update main.css
Browse files Browse the repository at this point in the history
TEXT ALGIN CENTER!
  • Loading branch information
jondoglover authored Aug 16, 2020
1 parent 58f1c83 commit 4754ca8
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions main.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
body {
font-family: "Courier";
}
a {
color: blue;
}
a:hover {
color: red;
}
.clickable {
font-family: "Courier";
text-align: center;
}
a {
color: blue;
}
a:hover {
color: red;
}
.clickable {
cursor: pointer;
}
.clickable::selection {
}
.clickable::selection {
user-select: none;
}
}

1 comment on commit 4754ca8

@aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code says the text-align: center; should only be in the body. but it's not. why?

Please sign in to comment.