HTML <del> datetime Atribut

❮ HTML tag <del>

Příklad

Smazaný text s datem a časem, kdy byl text smazán:

<p>
<del datetime="2015-11-15T22:55:03Z">This text has been deleted</del>
</p>

Definice a použití

Atribut datetimeurčuje datum a čas, kdy byl text odstraněn.


Podpora prohlížeče

Attribute
datetime Yes Yes Yes Yes Yes

Poznámka: Atribut datetimenemá v běžných webových prohlížečích žádný vizuální efekt, ale mohou jej používat programy pro čtení z obrazovky.


Syntax

<del datetime="YYYY-MM-DDThh:mm:ssTZD">

Hodnoty atributů

Value Description
YYYY-MM-DDThh:mm:ssTZD The date and time of when the text was deleted.

Explanation of components:

  • YYYY - year (e.g. 2012)
  • MM - month (e.g. 01 for January)
  • DD - day of the month (e.g. 08)
  • T or a space - a separator (required if time is also specified)
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 55)
  • ss - seconds (e.g. 03)
  • TZD - Time Zone Designator (Z denotes Zulu, also known as Greenwich Mean Time)

❮ HTML tag <del>