Created
September 21, 2020 13:30
-
-
Save iliakan/faa7530457a926306fdda96a057bc72c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table.colortable { | |
& td { | |
text-align:center; | |
&.c { text-transform:uppercase } | |
&:first-child, &:first-child + td { border:1px solid black } | |
} | |
& th { | |
text-align:center; | |
background:blue; | |
color:white; | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<link rel="stylesheet" href="1.css"> | |
<table class="colortable"> | |
<tr> | |
<th>test</th> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment