Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html></html>
<body>
  <div class="block block-one">
    <h2>Color Test</h2>
  </div>
  <div class="block block-two">
    <h2>Color Again</h2>
  </div>
</body>
 
.block {
  width: 200px;
  margin: 20px auto;
  background-color: pink;
  text-align: center;
  padding: 10px;
  transition: 1s;
}
h2 {
  transition: 1s;
}
.block-one:hover {
  background-color: wheat;
}
.block-one:hover h2 {
  color: azure;
}
.block-two:hover {
  color: azure;
  background-color: wheat;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers