Skip to content

Instantly share code, notes, and snippets.

@cleitonfco
Created April 13, 2012 09:07
Show Gist options
  • Save cleitonfco/2375289 to your computer and use it in GitHub Desktop.
Save cleitonfco/2375289 to your computer and use it in GitHub Desktop.
Border-radius (curso HTML5 e CSS3)
/**
* Border-radius (curso HTML5 e CSS3)
*/
p {
font-family:Helvetica Neue, sans-serif;
font-size:30px;
padding:30px;
background-color:#905;
color:#fff;
width:90px;
margin:20px;
}
p#one {
border-radius:15px 30px 40px 0;
}
p#two {
border-radius:15px 30px 40px;
}
p#three {
border-radius:15px 30px;
}
p#four {
border-radius:15px;
}
<!-- content to be placed inside <body>…</body> -->
<p id="one">Hello!</p>
<p id="two">Hello!</p>
<p id="three">Hello!</p>
<p id="four">Hello!</p>
{"view":"separate","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment