Last active
February 25, 2020 18:43
-
-
Save BindiChen/157394b4b7a26e6358ed26b30b9979b1 to your computer and use it in GitHub Desktop.
box with transparent border
This file contains hidden or 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
.box_4 { | |
width: 0; | |
height: 0; | |
margin: 100px auto; | |
} | |
.box_4 { | |
border-top: 60px solid red; | |
border-right: 60px solid transparent; | |
border-bottom: 60px solid transparent; | |
border-left: 60px solid transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment