Показать сообщение отдельно
  #1 (permalink)  
Старый 20.01.2024, 13:59
Аватар для deniscikasov@gmail.com
Аспирант
Отправить личное сообщение для deniscikasov@gmail.com Посмотреть профиль Найти все сообщения от deniscikasov@gmail.com
 
Регистрация: 14.03.2023
Сообщений: 76

Подчеркивание текста
Не могу понять почему текст подчеркивается черным

.lots__title {
   font-size: 40px;
   padding: 15px 0 20px 65px;
}

.lots__card {
   display: grid;
   grid-template-columns: repeat(3, 334px);
   justify-content: space-around;
   position: relative;
   top: 8px;
   left: 10px;
}

.card__item {
   position: relative;
   padding: 40px;
   min-height: 563px;
   width: 334px;
}

.card__item::before {
   content: '';
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, .5);
}

.card__one {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   background: url(../images/card-lot-01.jpg) 50% / cover no-repeat;
}


.card__two {
   background: url(../images/card-lot-02.jpg);
   position: relative;
   right: 10px;
}

.card__three {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   background: url(../images/card-lot-03.jpg) 50% / cover no-repeat;
   position: relative;
   right: 15px;
}


.card__title {
   padding-top: 12px;
   font-size: 22px;
   font-weight: 700;
   line-height: 26.4px;
   color: #fff;
   text-transform: uppercase;
   text-decoration: underline;
}

.card__text-two {
   position: relative;

}

.card__text {
   font-size: 20px;
   color: #fff;
   line-height: 24px;
   position: relative;
   bottom: 7px;
}


https://skr.sh/sNsJJzeuby8
Ответить с цитированием