Подскажите пожалуйста как сделать такую обводку снизу
Ответы (1 шт):
Автор решения: UserTest013
→ Ссылка
body {
background: #1b1426;
font-family: sans-serif;
font-size: 50px;
}
.bank {
position: relative;
width: 400px;
height: 70px;
margin: 20px auto;
padding: 30px;
background: #272636;
text-align: center;
color: #fefefe;
border-radius: 20px 20px 0 0;
}
.bank::before,
.bank::after {
content: "";
position: absolute;
height: 10px;
bottom: 0;
}
.bank::before {
left: 0;
right: 0;
background: linear-gradient(90deg, #502651 0%, #533638 100%);
}
.bank::after {
left: 50px;
right: 50px;
background: linear-gradient(90deg, #f32ebc 0%, #fb7f47 100%);
}
<div class="bank">Банк</div>
