<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div左侧三角</title>
</head>
<style type="text/css">
.a{
position:absolute;
width:100px;
height:100px;
margin-left:40px;
background-color:#CCC;
}
.a:before{
content:"";
position:absolute;
top:26%;
left:-20px;
width:0;
height:0;
border:10px solid transparent;
border-right-color:#CCC;
}
</style>
<body>
<div class="a">
</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div左侧三角</title>
</head>
<style type="text/css">
.a{
position:absolute;
width:100px;
height:100px;
margin-left:40px;
background-color:#CCC;
}
.a:before{
content:"";
position:absolute;
top:26%;
left:-20px;
width:0;
height:0;
border:10px solid transparent;
border-right-color:#CCC;
}
</style>
<body>
<div class="a">
</div>
</body>
</html>