Skip to content

Instantly share code, notes, and snippets.

@zenHeart
Last active June 24, 2019 07:07
Show Gist options
  • Save zenHeart/08deedcbb3e35fa1a79be37c63067193 to your computer and use it in GitHub Desktop.
Save zenHeart/08deedcbb3e35fa1a79be37c63067193 to your computer and use it in GitHub Desktop.
css 实现三角形
<!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