Created
July 28, 2011 20:28
-
-
Save ecylmz/1112471 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
div.shadow { | |
width: 300px; | |
margin: 20px; | |
padding: 10px; | |
} | |
div.shadow:hover { | |
border: 1px solid red; | |
-moz-box-shadow: 0 0 5px rgba(200,0,0,1); | |
-webkit-box-shadow: 0 0 5px rgba(200,200,0,1); | |
box-shadow: 0 0 5px rgba(200,0,0,1); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="shadow"> | |
Ut vulputate sem venenatis magna commodo ac semper nibh mollis. Pellentesque suscipit metus non lacus lacinia sed porttitor metus suscipit. Aenean egestas augue vel sem tincidunt scelerisque. Sed ullamcorper convallis arcu, vel euismod urna egestas in. | |
</div> | |
<body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment