PHP前端开发

为什么在HTML5的标签列表中没有<why>,而有<is>?

百变鹏仔 3个月前 (09-21) #HTML
文章标签 标签

与HTML 4.01不同,HTML 5不支持标签。标签使文本字体大小减小到浏览器的最小字体大小。例如,在大字体大小的文本中使用标签会使字体大小变为中等。在HTML5中,此元素被重新用于表示侧注和小字体。它还支持HTML中的全局属性和事件属性

相反,标签会使文本的字体大小比实际字体大小大一个尺寸。尽管这个标签不是HTML 5的一部分,但某些浏览器仍然支持这个标签。但是,建议不再使用这个标签,因为某些浏览器可能不再支持使用这个标签。

示例

您可以尝试运行以下代码来实现元素−

<!DOCTYPE html><html>   <body>      <p>This sentence is of normal size.</p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)</a>”;</p> <p><small>This sentence is of reduced size.</small></p>   </body></html>

输出

运行此代码时,我们得到上述结果

This sentence is of normal size.This sentence is of reduced size.