Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含漂亮编辑的文本框
保存后,视图背景为黑色。由于文本的默认颜色为黑色,这看起来像 我突出显示以测试是否有文本。 如果我将文本框中的文本颜色更改为白色,这将看起来像 你可以看到这是不合适的。
所以我的问题是,如果视图页面中的背景颜色,我如何设置默认颜色为白色。 任何意见或建议都很好。谢谢
.nicEdit-main{ background-color: white; }
那可行..
如果您阅读 wiki 文档,则有一些用于设置面板 CSS 的配置选项。如果你指定你自己的外部 CSS,你应该可以在那里设置前景色和背景色:
new nicEditor({externalCSS : 'mysite.css'});
mysite.css 包含以下内容:
textarea { background-color: white; color:white; }
http://wiki.nicedit.com/w/page/515/Configuration%20Options