我想知道是否可以在textarea中添加一些左边距,我想留一些空间,因为当我输入单词最终覆盖图像时,我正在使用图像图标作为按钮,而那是在textarea中。 / p>
<div id="inputBox">
<textarea class="txtarea" rows="50" name="Text" Id="Text"> </textarea>
<button mat-button id="send">
<mat-icon>send</mat-icon>
</button>
</div>
答案 0 :(得分:1)
始终先搜索Google Web development resource
.txtarea{
margin-left: 20px;
}
答案 1 :(得分:0)
以后,请先在Google上提问,然后再在此处发布。 使用CSS。您要寻找的是margin-left属性。 有关更多信息 W3Schools 和 Mozilla Developer Network