HTML CSS examples for HTML Tag:del
The datetime attribute sets the date and time when the text was deleted.
The datetime attribute has no visual effect in ordinary web browsers.
Value | Description |
---|---|
YYYY-MM-DDThh:mm:ssTZD | The date and time of when the text was deleted. |
A deleted text, with a date and time of when the text was deleted:
<!DOCTYPE html> <html> <body> <p><del datetime="2020-11-15T22:55:03Z">This text has been deleted</del></p> </body><!-- w ww . j a v a 2s . c o m--> </html>