Skip to content

Instantly share code, notes, and snippets.

@TimeBandit
Last active September 19, 2018 18:15
Show Gist options
  • Select an option

  • Save TimeBandit/d8e4a9410f51a507dbe6d7be53a9b3a2 to your computer and use it in GitHub Desktop.

Select an option

Save TimeBandit/d8e4a9410f51a507dbe6d7be53a9b3a2 to your computer and use it in GitHub Desktop.
Focus selector #html #css #styling
/* The tab index is needed tomake an element */
/* navigable from the keyboard */
div.container
div.output(tabindex="0")
.container {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid skyblue;
}
.output {
/* border: 1px solid tomato; */
box-shadow: 2px 2px 3px whitesmoke;
font-family:monospace;
font-size: 2rem;
padding: 0.5rem;
border-radius: 2px;
}
.output:focus {
background-color:black;
color: whitesmoke;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment