Markup Language/HTML, CSS
<nobr> 태그 : 공식 태그는 아님!
coding-restaurant
2020. 6. 11. 09:02
728x90
728x90
코드를 보다가 생소한 <nobr> 라는 태그를 발견하고 찾아보게 되었습니다.
<nobr></nobr>
<nobr> 태그는 공식 HTML 명령어가 아닙니다.
사용법은 여는 태그와 닫는 태그가 쌍으로 필요합니다.
<nobr>태그의 기능은 자동 줄바꿈을 방지합니다. (no + br)
<nobr>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</nobr>
<nobr> 태그는 CSS의 white-space: nowrap; 을 적용한 것과 같은 결과를 보입니다.
<nobr>는 일부 브라우저에서는 작동하나 언제든지 제거 가능합니다.
대체 속성
white-space: normal | nowrap | pre | pre-line | pre-wrap | break-space | initial | inherit;
그래서 CSS의 white-space 속성의 사용을 권장합니다.
white-space 문법은 위와 같습니다.
참고
728x90
728x90