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.
我在我的 rails 项目中使用了“Nic Edit”。
项目符号点(ol 和 ul)不起作用。
我检查了 nicEDIT.js.erb
它在按钮列表中。
Bold , Italic 和其他人正在工作,除了这个 'ol' 和 'ul' 。
我有解决办法。那是一个 CSS 问题。这两个类解决了问题
.nicEdit-main ol{ list-style:inside; list-style-type: decimal; } .nicEdit-main ul{ list-style: inside; list-style-type: circle; }
很可能你有一个 CSS 样式正在改变这些。
检查您的 css 样式以了解对 ul/ol 的任何更改。