Last active
June 24, 2019 07:07
-
-
Save zenHeart/08deedcbb3e35fa1a79be37c63067193 to your computer and use it in GitHub Desktop.
css 实现三角形
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<style type="text/css"> | |
.triangle { | |
width: 0; | |
height: 0; | |
border-width: 10px 12px; | |
border-style: solid; | |
border-color: #ff3300 #ffffff #ffffff #ffffff; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="triangle"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment