如何删除右下角的点

我试图去除位于右下角的textarea中的点。

以下是我的意思(来自Chrome)的示例:

如何删除这些对角线?


只需添加你的CSS文件

textarea {resize: none}

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;
}
链接地址: http://www.djcxy.com/p/27389.html

上一篇: How to remove dots present at the right bottom

下一篇: Chrome : make non resizable textareas