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
'Markup Language > HTML, CSS' 카테고리의 다른 글
[CSS] 헷갈리는 flex 재정리 + 가로분할 세로분할 예제 (0) | 2020.10.08 |
---|---|
[css] z-index와 같이 가야하는 속성, position (0) | 2020.06.24 |
스크롤바 투명으로 만들기 (scrollbar transparent mode) (0) | 2020.04.09 |
html 특수기호 검색하기 (0) | 2020.03.31 |
HTML6 출시 예정? 모달이 내제된다는 이야기도 (0) | 2020.03.20 |