css style--------------------------------
Сделал как смог. На фотошопе лучше выйдет
body{
padding:0;
margin: 0;
background-color: #0293fd;
}
div {
position: relative;
width: 1000px;
margin: 20px auto;
height: 100px;
background-color: orange;
}
div::after{
content: "";
position: absolute;
display: block;
width: 1px;
border: 10px solid transparent;
border-top-color:#0293fd;
left: 50%;
margin: 0 0 -10px -10px;
}
div::before{
content: "";
position: absolute;
width: 1px;
display: block;
border-bottom-color:white;
top: 80px;
border: 10px solid transparent;
border-top-color:orange;
left: 50%;
margin: 20px 0 -10px -10px;
}
</style>
<div class="block">
</div>
|