HTML 태그 - wbr
본문
HTML 태그 - wbr
<wbr>태그는 브라우저에 따라 줄바꿈이 필요할 경우 그 위치를 정해 주고자 할 때 사용합니다. ie5.5에서 처음 구현되었으며 html5에 공식적으로 추가되었습니다.
샘플
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="코리아뉴스" />
<title> html공부 </title>
<link rel="stylesheet" type="text/css" href="default.css" / >
<style type="text/css">
body {
color:red;
}
</style>
</head>
<body>
<section>
<h1>wbr태그</h1>
<p> 좋은 제품은 <wbr> 많은 기능이 있는 것보다 <wbr> 흠이 없는 것입니다.
참지식인은 <wbr> 많은 정보를 아는 사람이 아니라 <wbr> 한가지라도 제대로 알고 있는 사람입니다.
</p>
</section>
<div id="related">
<p>영역 </p>
</div>
<footer>
<address> 전화 : 031-574-3659, E-mail : master@koreanews.com </address>
Copyright ⓒ 2013 Koreanews co., All Rights Reserved.
</footer>
</body>
</html>
- 이전글HTML 태그 - xmp 14.12.11
- 다음글HTML 태그 - video 14.12.11