del/ins标签的cite和datetime属性

2022-07-28903次阅读html5

cite

指向资源的URL,用于解释删除或插入内容的原因。

datetime

删除或插入的日期。

<del
  cite="https://bugzilla.mozilla.org/show_bug.cgi?id=1620467"
  datetime="2020-07-23"
>Firefox doesn't support CSS's standard <code>appearance</code> property, so you can only use it prefixed.</del>

<ins          
  cite="https://bugzilla.mozilla.org/show_bug.cgi?id=1620467"
  datetime="2020-07-23"
>The <code>appearance</code> property, previously only available prefixed in Firefox, can now be used in all modern browers unprefixed.</ins>

 

上一篇: HTML元素optgroup为select元素中的选项创建分组  下一篇: :has()用于查找奇数网格  

del/ins标签的cite和datetime属性相关文章