Показать сообщение отдельно
  #2 (permalink)  
Старый 05.12.2015, 01:24
Аватар для Lemme
Профессор
Отправить личное сообщение для Lemme Посмотреть профиль Найти все сообщения от Lemme
 
Регистрация: 15.07.2015
Сообщений: 511

<style>
div {
  position: relative;
  width: 100px;
  height: 50px;
  background-color: tomato;
}
div::after{
  position: absolute;
  right: 0px;
  bottom: -10px;
  content: "";
 	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-top: 10px solid tomato;
}
</style>
<div></div>
Ответить с цитированием