文本区域的奇怪行为



我对这个表单中的文本区域有以下问题。第一个图像在我的计算机中,表单看起来不错,但在第二个图像中,文本区域看起来很奇怪。我想知道这种行为的原因是什么,以及我该如何改进。

html

<div className="information-wrapper col-md-12 col-sm-12 col-xs-12">
  <div className="icon-container col-md-3 col-sm-3 col-xs-3">
    <img src="/name-image.png"/>
  </div>
  <div className="text-container col-md-9 col-sm-9 col-xs-9">
    <textarea className="information-textarea" placeholder={I18n.t('name')} />
  </div>
</div>

css

.information-wrapper{
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  height: 51px;
  border-radius: 4px;
  background-color: #ffffff;
  margin-bottom: 10px;
  .icon-container{
    max-width: 53.65px;
    padding-right: 0;
    padding-left: 0;
    height: 51px;
    border-right: 0.5px solid #e7e5e8;
    text-align: center;
    img{
      margin-top: 15px;
      width: 22px;
      height: auto;
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
    }
  }
  .text-container{
    padding-right: 0;
    padding-left: 0;
    height: 51px;
    .information-textarea{
      height: 95%;
      width: 100%;
      font-size: 17px;
      font-weight: bold;
      padding-left: 5.5px;
      padding-top: 15px;
      border: 0;
      border-radius: 4px;
      resize: none;
      white-space: nowrap;
      overflow-x: scroll;
    }
  }
}

overflow: scroll将始终显示滚动条*,即使不需要它们。

*然而,在Mac电脑上,如果你没有插入鼠标,滚动条无论如何都会自动隐藏。这就是为什么你会看到不同的结果。

您可能想要overflow: auto,它只会在需要时显示滚动条。或者,正如其中一条评论所说,你可能真的只是想要一个<input>

相关内容

  • 没有找到相关文章

最新更新