설명
The HTML Inserted Text (<ins>
) HTML represents a range of text that has been added to a document.
문서(document)에 추가(inserted)된 텍스트를 나타낸다. 마크업에서 변경된 사항을 강조해서 보여줄 수 있다.
Usage Context
Permitted content | Transparent content model, either Phrasing content or flow content. |
Tag omission | None, must have both a start tag and and end tag. |
Permitted parent elements | Any element that accepts phrasing content, or any element that accepts flow content. |
Normative document | HTML 5, section 4.7.1; HTML 4.01, section 9.4 |
속성
이 엘리먼트는 전역속성을 지원한다.
cite
This attribute defines the URI of a resource that explains the change, like a link to some meeting minutes or a ticket in a troubleshooting sytem.
datetime
This attribute indicates the time and date of the change and must be a valid date with an optional time string. If the value cannot be parsed as a date with an optional time string, the element does not have an associated time stamp.
cite
이 속성은 추가된 텍스트에 대한 설명이 들어있는 페이지 혹은 구간으로 가는 링크를 정의한다. 약속시간이 바뀌거나 장애처리 시스템에서 문제보고가 들어오는 등, 변경된 사항이 있는 경우에 쓸 수 있다. 이 속성이 가지고 있는 값은 왜 해당 내용이 추가 혹은 변경되었는지를 나타내지만, 웹브라우저 상에 보여지지 않는다.
datetime
텍스트가 추가된 시간, 날짜를 표시한다. datetime 속성값은 유효한 시간문자열(time string)이어야 한다. 예) YYYY-MM-DDThh:mm:ssTZD. 그렇지 않은 경우에 <ins> 요소는 타임스탬프 조합을 얻지 못한다. 이 속성 역시 브라우저 상에 보여지지 않는다.
유효한 시간문자열을 이루는 부분에 대한 설명 :
- YYYY - 연도 (2009)
- MM - 달 (01 - 1월)
- DD - 날짜 (08)
- T - 필수 구분자
- hh - 시간 (22 - 밤 10시)
- mm - 분 (55)
- ss - 초 (03)
- TZD - 표준 시간대
예제
<ins>This text has been inserted</ins>
<ins>이 텍스트는 추가되었습니다.</ins>
출력화면
DOM Interface
This element implements the HTMLModElement.
이 요소는 HTMLModElement
인터페이스를 구현한다.
호환성
기능 | 구글크롬 | 파이어폭스Gecko) | 인터넷 익스플로러 | Opera | Safari |
---|---|---|---|---|---|
기본적인 지원 | 지원 | 지원 | 지원 | 지원 | 지원 |
기능 | 안드로이드 | 파이어폭스 모바일(Gecko) | 인터넷 익스플로러 모바일 | 오페라 모바일 | 사파리 모바일 |
---|---|---|---|---|---|
기본적인 지원 |
참고
https://developer.mozilla.org/en/HTML/Element/ins
- 문서의 삭제된 부분을 나타내는 <del>