Bootstrap 的文本区域在 Firefox 中呈现奇怪且丑陋

Bootstrap's textarea renders oddly and ugly in firefox

我正在尝试使用 Bootstrap 制作主题,但我在使用 textarea 时遇到了问题。它在基于 chrome 和 chrome 的浏览器中工作正常,但在 firefox 中看起来奇怪且丑陋。 Here is a working fiddle(在 Firefox 中打开)。

我该如何解决???我希望它看起来很正常。我不想通过修复这个来破坏任何其他东西。

<div>
    <br />
    <br />
    <textarea id="s" type="text" name="s" value="Enter Text" ></textarea>
</div>

将此添加到您的 css 部分:

textarea {
    border: 1px solid #eee;
}