Белый фон при нажатии на ссылку с телефона
Всем привет! Как исправить белый фон при нажатии на ссылку с телефона?
div class="memories__button">
<a
href="#"
target="_blank"
class="button-memories"
>Оставить воспоминания</a
>
</div>
.memories__button {
display: flex;
justify-content: center;
align-items: center;
margin: 8px 0 0 0;
}
.button-memories {
display: flex;
text-align: center;
align-items: center;
max-height: 36px;
background: #222223;
box-shadow: inset 0px 2px 2px #7882fb;
border: 1px solid;
border-image: linear-gradient(to right, #84a4ff, #1124cd) 1;
font-family: "Montserrat";
font-weight: 400;
font-size: 12px;
line-height: 122%;
letter-spacing: 0.04em;
color: #ffffff;
padding: 11px 21px;
}
.button-memories:focus {
background: #233373;
}
.button-memories:hover {
background: #17214b;
}
.button-memories:active {
background: #4d60af;
}
Ответы (1 шт):
Автор решения: BlackStar1991
→ Ссылка
.memories__button {
display: flex;
justify-content: center;
align-items: center;
margin: 8px 0 0 0;
}
.button-memories {
display: flex;
text-align: center;
align-items: center;
max-height: 36px;
background: #222223;
box-shadow: inset 0px 2px 2px #7882fb;
border: 1px solid;
border-image: linear-gradient(to right, #84a4ff, #1124cd) 1;
font-family: "Montserrat";
font-weight: 400;
font-size: 12px;
line-height: 122%;
letter-spacing: 0.04em;
color: #ffffff;
padding: 11px 21px;
}
.button-memories:focus {
background: #233373;
}
.button-memories:hover {
background: #17214b;
}
.button-memories:active {
background: #4d60af;
}
<div class="memories__button">
<a href="#" target="_blank" class="button-memories">Оставить воспоминания</a>
</div>
Оно или отнаследывает background-color от родителя .team__text либо это не ссылка, поскольку, по нажатию на ссылке должен происходить редирект на указаную страницу и вы вообще фона видеть не должны
