Skip to content

Instantly share code, notes, and snippets.

@Yukaii
Last active January 4, 2020 02:01
Show Gist options
  • Select an option

  • Save Yukaii/90c03e43ddc39d33a6c159ca1865753e to your computer and use it in GitHub Desktop.

Select an option

Save Yukaii/90c03e43ddc39d33a6c159ca1865753e to your computer and use it in GitHub Desktop.
GistPad playground test
<div class="circle red w-50 h-50"></div>
<div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div><div class="circle red w-50 h-50"></div>
{
"libraries": []
}
console.log(document.querySelector('.circle'))
.circle {
border-radius: 50%;
overflow: hidden;
cursor: pointer;
}
.w-50 {
width: 50px;
}
.h-50 {
height: 50px;
}
.red {
background-color: red;
}
body {
background-color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment