본문 바로가기
웹표준/HTML5 훑어보기

HTML5 del 엘리먼트(element)

by 샷타이거 2010. 7. 5.

HTML5 del 엘리먼트(element)

ins엘리먼트와 다르게 문서에서 삭제된 콘텐츠를 구분하여 표현한다.

ins가 밑줄이 그어진다면 del은 가운데선이 그어진다.

속성엘리먼트역시 똑같으며 별반다를바없다.


<ul>
 <li>Empty the dishwasher</li>
 <li><del datetime="2009-10-11T01:25-07:00">Watch Walter Lewin's lectures</del></li>
 <li><del datetime="2009-10-10T23:38-07:00">Download more tracks</del></li>
 <li>Buy a printer</li>
</ul>

댓글