Skip to content

Instantly share code, notes, and snippets.

@ecylmz
Created July 28, 2011 20:28
Show Gist options
  • Save ecylmz/1112471 to your computer and use it in GitHub Desktop.
Save ecylmz/1112471 to your computer and use it in GitHub Desktop.
<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