현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Quote 요소 (<q>) 는 둘러싼 텍스트가 짧은 인라인 인용문이라는것을 나타냅니다. 이 요소는 단락 구분이 필요없는 짧은 인용문을 위해 사용되며, 긴 인용문에는 <blockquote>
요소를 사용하세요.
- 컨텐츠 범주 플로우 컨텐츠, 구문 컨텐츠, palpable 컨텐츠.
- 허용된 컨텐츠 구문 컨텐츠.
- 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 구문 컨텐츠를 허용하는모든 요소
- DOM 인터페이스
HTMLQuoteElement
속성
이 요소는 전역 속성을 포함합니다.
cite
- 이 속성의 값은 인용된 정보의 원본 문서나 메세지를 가리키는 URL를 나타냅니다. This attribute is intended to point to information explaining the context or the reference for the quote.
예제
<p>Everytime Kenny is killed, Stan will announce <q cite="https://en.wikipedia.org/wiki/Kenny_McCormick#Cultural_impact"> Oh my God, you/they killed Kenny! </q>. </p>
위 HTML의 결과:
Everytime Kenny is killed, Stan will announce Oh my God, you/they killed Kenny!
.
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<q>' in that specification. |
Living Standard | |
HTML5 The definition of '<q>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<q>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
참고
Most modern standards-aware browsers, like Mozilla Firefox, Opera, and Safari, should add quotes around text enclosed within the <q>
element.
Some browsers, like Internet Explorer, may not make any sort of style change for quotations, but it is possible to apply a style rule.
같이 보기
- 긴 인용문을 위한
<blockquote>
요소. - The
<cite>
element for source citations.