<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2.8 画一个有边缘色的三角形</title>
</head>
<style>
.or {
position: relative;
text-align: center;
width: 450px;
}
.or:after,
.or:before {
content: "";
position: absolute;
top: 12px;
height: 1px;
background: #ccc;
width: 200px;
}
.or:after {
left: 0;
}
.or:before {
right: 0;
}
</style>
<body class="home">
<div class="or">Or</div>
</body>
</html>