Skip to content

Instantly share code, notes, and snippets.

@casprwang
Created February 27, 2017 05:51
Show Gist options
  • Save casprwang/af64a9f9852d345f90d9ceb73084ce7d to your computer and use it in GitHub Desktop.
Save casprwang/af64a9f9852d345f90d9ceb73084ce7d to your computer and use it in GitHub Desktop.
.board {
display: flex;
width: 600px;
height: 600px;
flex-direction: row;
flex-wrap: wrap;
/* justify-content: flex-start; */
}
.square {
height: 200px;
width: 200px;
box-sizing: border-box;
border: 5px solid black;
font-size: 5em;
display: flex;
justify-content: center;
align-items: center;
}
.square:hover {
background-color: orange;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment