Skip to content

Instantly share code, notes, and snippets.

@lionhylra
Created October 29, 2013 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lionhylra/7208813 to your computer and use it in GitHub Desktop.
Save lionhylra/7208813 to your computer and use it in GitHub Desktop.
三角形箭头
<!DOCTYPE html>
<html>
<head>
<style>
html,body{text-align: center;}
body{
text-align: center;
margin: 0;
padding:0;
background-color: gray;
}
*{margin:0 auto;}
#triangle{
width: 0;
height: 0;
background:transparent;
border-top: 25px solid transparent;
border-right:25px solid transparent;
border-bottom:25px solid green;
border-left:25px solid transparent;
}
#comment{
width:400px;
height: 200px;
background-color: green;
border-radius:25px;
}
</style>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
<div id="triangle"></div>
<div id="comment">This is what I want to say!</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment