ACE 中的红色空格 Chrome
Red Spaces in ACE with Chrome
我想弄清楚为什么在 ACE 中使用 Chrome 和 Safari 时空格变成 red/invalid (<span class="ace_invisible ace_invisible_space ace_invalid">·</span>
)。 Firefox 一切正常。
样本:
http://laktak.github.io/js-graphy/
我已经按照 this answer 的建议指定了 charset="utf-8"
。
这是由于
textarea {
white-space: nowrap;
}
css 规则 graphy.css。禁用可以解决问题。
我想弄清楚为什么在 ACE 中使用 Chrome 和 Safari 时空格变成 red/invalid (<span class="ace_invisible ace_invisible_space ace_invalid">·</span>
)。 Firefox 一切正常。
样本: http://laktak.github.io/js-graphy/
我已经按照 this answer 的建议指定了 charset="utf-8"
。
这是由于
textarea {
white-space: nowrap;
}
css 规则 graphy.css。禁用可以解决问题。