Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Created October 14, 2014 08:29
Show Gist options
  • Save pankajpatel/ba4cd307e3186a219473 to your computer and use it in GitHub Desktop.
Save pankajpatel/ba4cd307e3186a219473 to your computer and use it in GitHub Desktop.
Demonstrate the border in CSS
<style type="text/css">
.demo1{
border:30px solid transparent;
border-top-color: red;
border-right-color: blue;
border-bottom-color: green;
border-left-color: black;
display: block;
width: 0px;
height: 0px;
}
</style>
<div class="demo1"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment