摆脱字体标签的最佳方法?
我一直在这里处理 XSLT 文件。我一直在为 XSLT 文件中包含的元素编写 CSS。由于约定问题,我需要摆脱字体标签,是否有任何标签可以用来摆脱此字体标签,而我仍然可以保留字体标签中包含的特定元素的 CSS 类。
<div class="TitleStyle">
<font class="WhiteHeader">
<xsl:value-of disable-output-escaping="yes" select="title" />
</font>
<font class="ProviderStyle">
@ <xsl:value-of disable-output-escaping="yes" select="job_board_provider"/>
</font>
</div>
I have been working on a XSLT file here. I had been writing CSS for elements contained in the XSLT files. I need to get rid of font tags due to convention issues, is there any tag that i could use to get rid of this font tags where i can still retain the CSS classes for my specific elements contained in the font tags.
<div class="TitleStyle">
<font class="WhiteHeader">
<xsl:value-of disable-output-escaping="yes" select="title" />
</font>
<font class="ProviderStyle">
@ <xsl:value-of disable-output-escaping="yes" select="job_board_provider"/>
</font>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(即 HTML 的内联管道胶带)应该可以工作:
<span>
(i.e. inline duct tape for HTML) should work:有很多方法可以摆脱
font
标签,例如使用span
而不是font
标签 &在上面写下你的CSS。CSS:
there many ways to get rid of
font
tag like givespan
instead offont
tag & write your css on it.css: