html – Textarea框移动点击初始页面加载

前端之家收集整理的这篇文章主要介绍了html – Textarea框移动点击初始页面加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个textarea框,在页面加载时初次点击时移动.这很奇怪,似乎有点儿麻烦,我甚至不知道从哪里开始调试.

有谁之前经历过这个吗?

这是一张图片.白色的盒子立即回到textarea,textarea很好.它仅在初始点击时初始加载.

enter image description here

这是我的HTML

  

 .textarea {
      display: block;
      height: 100px;
      width: 100%;
      font-size: 24px;
    } 


.container {
  width: 100%;
  padding-top: 50px;
  text-align: center;
}

.title {
  color: #fdfdfd;
  font-size: 55px;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 30px;
}

.label {
  color: seagreen;
  font-size: 19px;
}

.input {
  width: 100%;
  height: 45px;
  font-size: 24px;
  line-height: 45px;
}

.form-group {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.form {
  width: 500px;
  margin: 0 auto;
}

.submit {
  font-family: Chalk-c1;
  width: 300px;
  height: 43px;
  font-size: 24px;
  color: #fdfdfd;
  background-color: rebeccapurple;
  border: none;
  border-radius: 4%;
  cursor: pointer;
}

.textarea {
  display: block;
  height: 100px;
  width: 100%;
  font-size: 24px;
}

html {
  background-color: #111;
  font-family: Chalk-c1;
  color: #fdfdfd;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

enter image description here

最佳答案
我认为这是因为Grammarly插件.一旦我遇到这种问题,但当我关闭插件时,我已经解决了它.所以,检查一下是否有效..
原文链接:https://www.f2er.com/html/426360.html

猜你在找的HTML相关文章