我试图在tinyMCE中设置自定义格式。
我试图制作它,以便当您选择一些文字并选择此格式时,它会在文本周围添加边框并使用:before
css选择器来添加图像。
它似乎在Chrome中运行,但在IE8或IE9中无法使用(Haven无法在其他浏览器版本中进行测试)。在IE8和9中,应用了格式(边框并将文本颜色更改为红色,但图像不会出现
这是我的init
方法
tinymce.init({
, theme : 'modern'
, selector : selector
, entity_encoding : 'named'
, plugins : ['table','contextmenu','paste','fullscreen','image','template','mention']
, content_css : contentcss
, formats : {
Warning: { inline:'span', 'classes':'rte-warning' }
}
, style_formats : [
{
title: 'Custom', items: [
{ title: 'Warning', format: 'Warning' }
]
}
]
, menubar : false
});
和我的css
.rte-warning
{
display : block;
border : 1px solid #FD9F08;
background-color : #FFFFFF;
line-height : 30px;
padding : 10px;
color : #FC2400;
font-weight : bold;
}
.rte-warning:before
{
content : ""; /* Empty string must be specified or image doesn't appear for some reason */
background : url('/img/rte/Warning.gif');
display : block;
width : 75px;
height : 30px;
border : 1px solid #D42E12;
margin-right : 10px;
}
答案 0 :(得分:1)
我找到了问题的原因。这是关于:选择器和Quirks模式之前的IE的已知错误