Skip to content

Instantly share code, notes, and snippets.

@marcoemrich
Created September 20, 2023 00:47
Show Gist options
  • Save marcoemrich/bf55fd372374eac84e57f42817075954 to your computer and use it in GitHub Desktop.
Save marcoemrich/bf55fd372374eac84e57f42817075954 to your computer and use it in GitHub Desktop.
CSS for Tic Tac Toe Exercise
button.cell + button.cell {
margin: 0;
}
.board {
/* border: 1px solid black; */
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 0px;
width: 300px;
height: 300px;
}
.cell {
border: 1px solid red;
width: 100px;
height: 100px;
font-size: 80px;
}
#message-box {
width: 200px;
border: 1px solid black;
width: 258px;
height: 200px;
padding: 20px;
overflow-y: scroll;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment