这里有两个问题:< / a>没有正确显示,最后一行应为黑色时保持蓝色。我正在尝试将链接元素的整个代码转换为以HTML格式显示的文本形式。
<body>
<p>Where is the closing bracket? <br>
<font color=blue> <a ID=one-link href=http://CNN.com>CNN</a > </font> or<br>
<a class=many-links href=http://CNN.com>CNN</a> </font><br>
and why is this line also blue?
以下是指向jsfiddle的链接。
看看JSfiddle中的着色,看起来好像是将&amp; gt代码与字体混在一起。
此外,在此期间,当我关闭蓝色字体规范时,我也试图弄清楚为什么最后一行也有蓝色文本。我想如果我解决第一个问题,这也会解决。
答案 0 :(得分:1)
试试这段代码:
<body>
<p>Where is the closing bracket? <br>
<span style="color:blue"> <a ID=one-link href=http://CNN.com>CNN</a> </span> or
<br />
<a class=many-links href=http://CNN.com>CNN</a> </span>
<br />
and why is this line also blue?
您忘记将<
替换为<
答案 1 :(得分:0)
你在html中添加了<font color="blue">
,这就是为什么它显示为蓝色,而且<font>
标记在html5中被折旧,所以删除它,用下面的内容更新你的HTML
<强> HTML 强>
<p>Where is the closing bracket? <br>
<a ID="one-link" href="http://CNN.com">CNN</a > or<br>
<a class="many-links" href="http://CNN.com">CNN</a> <br>
and why is this line also blue?
</p>