<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
width: 200px;
height:100px;
border:2px solid gray;
text-align: center;
line-height: 100px;
}
span{
display: inline-block;
width: 0px;
height:0px;
border:5px solid transparent;
border-top-color:red
}
</style>
</head>
<body>
<div class="box">
信息完善
<span></span>
</div>
</body>
</html>