Detailed explanation of using INS and DEL to mark document changes

Detailed explanation of using INS and DEL to mark document changes
ins and del were introduced in HTML 4.0 to help authors collaborate when developing documents, and also retain some editing (for example, it can reflect how the author modified the document over a period of time and how he thought) and version control components (with the help of software, the document can be restored to its state at a specific time).

property
1.cite: The attribute value is the URI of a document or information resource. This attribute is to indicate why the explanation information of this document is changed.
2.datetime: The attribute value clearly and in detail describes the date and time when the modification occurred.
The format of the datetime attribute value is: YYYY-MM-DDThh:mm:ssTZD
YYYY = 4 digits representing the year (0000-9999)
MM = 2 digits representing the month (01 - 12)
DD = 2 digits representing the day (01 - 31)
hh = 2 digits representing the hour (00 - 23)
mm = 2 is a number representing minutes (00 - 59)
ss = 2 is a number representing seconds (00 - 59)
TZD = time zone indicator, for example, the modification time is: Beijing time May 15, 2007 19:25:25

The writing method of datetime is :
datetime="20070515T112525Z"
Greenwich Mean Time is also known as "Zulu", so it is represented by the value Z.
datetime="20070515T192525+08:00"
Beijing time is 8 hours ahead of Greenwich Mean Time, which ensures that the universal time is consistent even if the creators write differently in different locations.

Notice :
The system is case sensitive. Both T and Z must be uppercase. Hours and minutes are required. If you don't know the seconds or want to ignore them, you can use 00.
3.id, class, lang, dir, title, style
4.onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup

usage
In HTML, the ins and del elements can be either block-level elements or inline elements, but not both at the same time. So they can contain one or several words in a paragraph, or they can contain several block-level elements like paragraphs (p), lists (ul, ol, dl), tables (table), etc.

Copy code
The code is as follows:

<p>I have <del cite="http://dancewithent.com/example.html" datetime="20070515T192525+08:00">2</del><ins cite="http://dancewithent.com/example.html" datetime="20070515T192525+08:00">3</ins> cents</p>
<del title="Just lost" datetime="20070515T192525+08:00"><p>I have 3 cents</p></del>
Authors can use the title attribute to comment on inserted or deleted elements, and user agents (such as browsers) may display this information to users.
<p><del title="Just lost" datetime="20070515T192525+08:00"><div><p>I have 3 cents</p></div></del></p>

This is an incorrect way of writing, that is, ins and del cannot be both block-level elements and inline elements at the same time. The display effect of ins and del on the page can be controlled by CSS, for example, see the ins and del effects in this article "How to support Alpha transparency in IE, FireFox, and Opera browsers".

<<:  Pure CSS to achieve cool charging animation

>>:  When MySQL is upgraded to 5.7, WordPress reports error 1067 when importing data

Recommend

The difference between HTML name id and class_PowerNode Java Academy

name Specify a name for the tag. Format <input...

Explanation of the usage of replace and replace into in MySQL

MySQL replace and replace into are both frequentl...

Html sample code for reading and displaying pictures in a local folder

One purpose Select a local folder on the Html pag...

Detailed explanation of long transaction examples in MySQL

Preface: The "Getting Started with MySQL&quo...

MySQL batch adding and storing method examples

When logging in to the stress test, many differen...

Using CSS3 to create header animation effects

Netease Kanyouxi official website (http://kanyoux...

vsCode generates vue templates with one click

1. Use the shortcut Ctrl + Shift + P to call out ...

Summary of several implementations of returning to the top in HTML pages

Recently, I need to make a back-to-top button whe...

Understanding and using React useEffect

Table of contents Avoid repetitive rendering loop...

Detailed explanation of CSS image splicing technology (sprite image)

CSS image splicing technology 1. Image stitching ...

More Ways to Use Angle Brackets in Bash

Preface In this article, we will continue to expl...

A brief introduction to VUE uni-app core knowledge

Table of contents specification a. The page file ...