参考程序:
<style>
#demo {
width: 100px;
height: 100px;
background-color: #fff;
position: relative;
border: 2px solid #333;
}
#demo::before{
width: 0;
height: 0;
content: '';
position: absolute;
border-width: 12px;
left:100%;
top:18px;
border-style: solid;
border-color: transparent transparent transparent #000;
}
#demo::after{
width: 0;
height: 0;
content: '';
position: absolute;
border-width: 10px;
left:100%;
top:20px;
border-style: solid;
border-color: transparent transparent transparent #fff;
}
</style>
</head>
<body>
<div id="demo">
</div>