Skip to content

Instantly share code, notes, and snippets.

@ama-ch
Created May 13, 2012 23:32
Show Gist options
  • Save ama-ch/2690777 to your computer and use it in GitHub Desktop.
Save ama-ch/2690777 to your computer and use it in GitHub Desktop.
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CodePen &middot; A Pen by ama-ch</title>
<link rel="stylesheet" href="http://codepen.io/stylesheets/css/normalize.css">
<style>
.hoge {
width: 100px;
height: 50px;
border: 1px solid #ccc;
-webkit-border-radius: 4em;
-moz-border-radius: 4em;
-ms-border-radius: 4em;
-o-border-radius: 4em;
border-radius: 4em;
}
</style>
</head>
<body>
<div class="hoge">hoge</div>
</body>
</html>
<div class="hoge">hoge</div>
@import "compass";
.hoge {
width: 100px;
height: 50px;
border: 1px solid #ccc;
@include border-radius(4em);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment