Difference between revisions of "Team:BostonU/Medal Criteria"

Line 6: Line 6:
 
     height: 100px;
 
     height: 100px;
 
     background: red;
 
     background: red;
     -webkit-transition: width 2s, height 4s;
+
     transition: width 2s;
    transition: width 2s, height 4s;
+
 
}
 
}
  
 
#hello:hover {
 
#hello:hover {
 
     width: 300px;
 
     width: 300px;
    height: 300px;
 
 
}
 
}
 
</style>
 
</style>

Revision as of 15:53, 9 August 2016

Note: This example does not work in Internet Explorer 9 and earlier versions.

Hover over the div element above, to see the transition effect.