我试着用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;
}

关于javascript - Bootstrap Textarea在Firefox中呈现奇怪和丑陋,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29582646/

10-16 15:43