<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.container{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin: auto; /*设置水平垂直居中*/
height:0;
width:0;
border:50px solid transparent;
border-bottom-color:skyblue; /*显示三角形*/
/* transform: rotate(45deg); 旋转 */
}
</style>
<title>实验一</title>
</head>
<body>
<div class = "container" contenteditable="true">
</div>
</body>
</html>
测试效果: