如何删除FF中文本区域右侧的空白块?

发布于 2024-11-08 07:18:05 字数 1256 浏览 0 评论 0原文

我希望文本区域显示与相同宽度的 div 元素相同的文本,并且它在 Chrome 中工作正常,但 Firefox 在文本区域的右侧有一个白色块,它会截掉最后一个字母。

您可以在这里找到 jsfiddle 示例: http://jsfiddle.net/ngn6Y/9/ 其中包含与以下相同的代码:

var fontsize = '12px';
$(function(){
    var t = 'abcdefg';
    var e = $('body');
    var a = $('<div>').appendTo(e).text(t)
        .css({
            border:'thin solid black',
            position:'absolute',
            top:'40px',
            padding:'2px',
            margin:0,
            height:fontsize,
            'font-size':fontsize,
            'font-family': '"lucida grande",Tahoma, Arial,sans-serif'
        });
    var b = $('<textarea>').appendTo(e).val(t)
        .css({
            border:'thin solid black',
            padding:'2px',
            margin:0,
            outline:0,
            resize:'none',
            overflow:'hidden',
            height:fontsize,
            'word-wrap':'break-word',
            'font-size':fontsize,
            'font-family': '"lucida grande",Tahoma, Arial,sans-serif'
        }).width(a.width());
});

谢谢!

编辑:感谢下面 Ionuş G. Stan 的回答,我对问题添加了另一个限定条件:这个文本区域需要用 'word-wrap':'break-word' 来换行,否则整个文本点-当单词长度超过允许的最大宽度时,阴影就会丢失。

I would like a textarea to display the same text as a div element of the same width, and it works fine in Chrome, but Firefox has a white block to the right of a textarea that chops off the last letter.

You can find a jsfiddle example here: http://jsfiddle.net/ngn6Y/9/
which contains the same code as below:

var fontsize = '12px';
$(function(){
    var t = 'abcdefg';
    var e = $('body');
    var a = $('<div>').appendTo(e).text(t)
        .css({
            border:'thin solid black',
            position:'absolute',
            top:'40px',
            padding:'2px',
            margin:0,
            height:fontsize,
            'font-size':fontsize,
            'font-family': '"lucida grande",Tahoma, Arial,sans-serif'
        });
    var b = $('<textarea>').appendTo(e).val(t)
        .css({
            border:'thin solid black',
            padding:'2px',
            margin:0,
            outline:0,
            resize:'none',
            overflow:'hidden',
            height:fontsize,
            'word-wrap':'break-word',
            'font-size':fontsize,
            'font-family': '"lucida grande",Tahoma, Arial,sans-serif'
        }).width(a.width());
});

Thanks!

Edit: thanks to an answer by Ionuț G. Stan below I added another qualification to the question: this textarea needs to wrap on break-word e.g. with 'word-wrap':'break-word', otherwise the whole point of text-shadowing gets lost when a word is longer than the maximum width allowed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风和你 2024-11-15 07:18:05

word-wrap: normal 添加到文本区域。似乎在 FF 4.0.1 中解决了这个问题。

Add word-wrap: normal to the textarea. Seems to fix the problem in FF 4.0.1.

二手情话 2024-11-15 07:18:05

Firefox 为文本区域提供了额外的 0px 1px 填充,以与 Internet Explorer 兼容。

Firefox gives the textarea an extra 0px 1px padding for compatibility with Internet Explorer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文