我尝试制作
自定义标签,以便
用户可以输入
显示红色或粗体等字样的文本,例如,当呈现为HTML时,
<rb>text here becomes red and bold</rb> and goes to default here
这将在一个带有’note’类的div中呈现,并且我有以下css设置
.note rb
{
color:Red;
font-weight:bold;
}
它适用于ie9,chrome,firefox,但在ie8中不起作用.我怎样才能在那里工作?
为了取悦高级浏览器(IE8及更早版本),我会选择以下
内容:
HTML:
<span class="RB">text here becomes red and bold</span> and goes to default here
CSS:
.RB {color:Red; font-weight:bold; }
这针对所有RB类.所以你只需将所有内容都包裹起来
< span class =“RB”> < /跨度>