Skip to content

Instantly share code, notes, and snippets.

@code-for-coffee
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-for-coffee/3adf9f6ef3d9b1df37df to your computer and use it in GitHub Desktop.
Save code-for-coffee/3adf9f6ef3d9b1df37df to your computer and use it in GitHub Desktop.
Border-radius sample for Chris
<html lang="en">
<head>
<!-- in Stylesheets, a class can be prefixed with a "." and an ID with a "#" -->
<style type="text/css">
/* assign the entire HTML body an ID of "home" */
#home {
font-weight: bold;
font-color: black;
}
/* you only need to worry about this "class" */
.border-test {
border-color: navy;
border-radius: 5px;
}
</style>
</head>
<body id="home">
<div class="border-test">
Sample test for border-radius. Adjust the # in pixels to make it work.
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment