HTML/CSS Alpha 代码 $ IE不渲染
我试图在我的 html 页面中使用 $ 符号,其中我使用下面的 html 代码
$dollar;
虽然在 IE 中它似乎没有呈现美元符号......有什么想法吗?
I'm trying to use a $ sign in my html page, in which i use the html code below
$dollar;
Although in IE it doesn't seem to render the dollar sign.... Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不需要美元符号的 HTML 实体,因为 $ 已经在您的 ASCII 键盘上。只需输入 $(通常为 Shift+4)。
无论如何,HTML 实体以
&
(与符号)开头,而不是$
(美元)。You don't need an HTML entity for the dollar sign since $ is already on your ASCII keyboard. Just type $ (usually as Shift+4).
Anyway, HTML entities start with
&
(ampersand), not$
(dollar).您应该使用以下
$
的 HTML 表示形式:You should use the following HTML representation of
$
:$< 没有 HTML 中定义的命名实体 /code> 符号,但由于该字符以 ASCII(以及所有其他字符编码)出现并且在 HTML 中没有特殊含义,因此您永远不需要使用它。
There is no named entity defined in HTML for the
$
sign, but since the character appears in ASCII (and every other character encoding) and has no special meaning in HTML, you never need to use one.