Подтвердить что ты не робот

Как удалить точки, присутствующие в правом нижнем углу текстового поля? HTML

Я пытаюсь удалить точки в textarea, которые присутствуют в правом нижнем углу textarea, пожалуйста, помогите мне выйти из этой проблемы....

4b9b3361

Ответ 1

Просто добавьте в свой CSS файл

textarea {resize: none}

Ответ 2

HTML

                                                                       

пререкаться

textarea {
  position: relative;
  z-index: 1;
  min-width: 1141px;
  min-height: 58px;
}

.resizer {
  position: relative;
  display: inline-block;
  &:after {
    content: "";
    border-top: 8px solid #1c87c7;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    -webkit-transform: rotate(-45deg);
    z-index: 1;
    opacity: 0.5;
    position: absolute;
    bottom: 1px;
    right: -3px;
    pointer-events: none;
  }
}
.arrow-resizer-textarea {
  height: 0;
  width: 0;
  border-top: 8px solid #1c87c7;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  -webkit-transform: rotate(-45deg);
  position: absolute;
  bottom: 1px;
  right: -3px;
  pointer-events: none;
  z-index: 2;
}