Показать сообщение отдельно
  #3 (permalink)  
Старый 06.12.2015, 19:32
Новичок на форуме
Отправить личное сообщение для george260493 Посмотреть профиль Найти все сообщения от george260493
 
Регистрация: 20.07.2015
Сообщений: 1

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>
Ответить с цитированием