Skip to content

Instantly share code, notes, and snippets.

@santheo
Created October 9, 2013 23:43
Show Gist options
  • Select an option

  • Save santheo/6910532 to your computer and use it in GitHub Desktop.

Select an option

Save santheo/6910532 to your computer and use it in GitHub Desktop.
a:hover {
color: red;
padding-left: 200px;
}
a:active {
padding-left: 100px;
}
.joey {
background: red;
height: 100px;
}
.pants {
height: 50px;
background: blue;
display: block;
}
.joey .pants {
border: 10px solid orange;
}
.joey .pants b {
color: white;
}
.joey .pants:first-of-type {
border-color: pink;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<b>All about pants</b>
<p>
<a href="#">yahoo.com</a>
</p>
<Br>
<span class="pants"></span>
<br>
<br>
<div class="joey">
<i>test</i>
<span class="pants">
</span>
<span class="pants">
</span>
<span class="pants">
</span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment