<html>

<style>
 *{
     padding:0;
     margin:0;
 }


 body{
     height:100vh;
     display:flex;
     justify-content:center;
     align-items:center;
     font-size:3em;
 }

 p::before{
     content:''; 
     background:red;
     display:block;
     width:10px;
     height:40px;
 }
</style>

<body>

 <p>未找到您所访问的内容</p>

</body>
</html>
