Created
October 14, 2014 08:29
-
-
Save pankajpatel/ba4cd307e3186a219473 to your computer and use it in GitHub Desktop.
Demonstrate the border in CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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