我正在使用 css 设置文本输入和文本区域的宽度:
input[type=text],
input[type=file],
textarea {
width: 305px;
}
由于某种原因,在 Firefox 中,textarea 的宽度显得更短:
在 safari 和 chrome 中运行良好。我怎样才能解决这个问题?
解决方案:
如此处所述: 无法使用 CSS 添加设置 textarea 宽度:
padding: 0;
border: 1px solid #ccc;
成功了。