Skip to content

Instantly share code, notes, and snippets.

@dmertl
Created July 19, 2013 20:33
Show Gist options
  • Save dmertl/6042137 to your computer and use it in GitHub Desktop.
Save dmertl/6042137 to your computer and use it in GitHub Desktop.
<html>
<head>
<style type="text/css">
#test-image {
border-radius: 10px;
box-shadow: 0 0 0 3px red;
}
#test-wrap {
display: inline-block;
border: solid 3px #F00;
border-radius: 10px;
overflow: hidden;
}
</style>
</head>
<body>
<!--Works-->
<img src="http://placekitten.com/100/100" id="test-image" />
<br />
<!--Works-->
<div id="test-wrap">
<img src="http://placekitten.com/100/100" />
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment