Skip to content

Instantly share code, notes, and snippets.

@jveillet
Last active April 27, 2017 10:26
Show Gist options
  • Save jveillet/c4d181e18870f9b3262c046ad4eb8979 to your computer and use it in GitHub Desktop.
Save jveillet/c4d181e18870f9b3262c046ad4eb8979 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>cursor - CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
ul {
list-style-type: none;
}
li {
margin: 2em;
}
.toolbar-item {
cursor: auto;
background-color: #eee;
width: 5em;
}
.toolbar-item__hand {
cursor: pointer;
background-color: #eee;
width: 5em;
}
</style>
</head>
<body>
<div class="container">
<ul>
<li class="toolbar-item">
<a>My button (cursor auto)</a>
</li>
<li class="toolbar-item__hand">
<a>My button (cursor pointer)</a>
</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment