Eyes Of Siche
Guest book

Search Results for 'white-space'


1 POSTS

  1. 2008/11/04 NOBR tag CSS alternative/analog by siche

NOBR tag CSS alternative/analog

abstract 
Sometimes it is necessary to put series of non-breaking spaces between words, to ensure that browser will not break line. Using multiple &nbsp; (non-breaking space entity) is quite messy and <NOBR> from older versions of HTML is not defined in XHTML standard. This articles tells about CSS property which can substitute <NOBR> tag
compatible 
  • CSS 2 and higher

Use CSS property "white-space: nowrap" for an element, which should contain non-breaking text.

You could add style class like .nobr and use it later instead of <NOBR> tag:

source code: CSS
 
.nobr {white-space: nowrap}
 

Example:

source code: XHTML/CSS
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<title>Empty XHTML 1.0 Strict Document</title>
		<style type="text/css">
		.nobr {white-space: nowrap}	
		</style>
	</head>
	<body>
 
	<p>Test table #1 (word-wrapping):</p>
 
	<table style="width: 100%; margin-bottom: 3em; border: 1px solid black;">
	<tr><td style="width: 1%;">
	Popular keywords: free hosting CSS HTML guide
	tutorial information web-design
	</td>
	<td style="width: 99%; background-color: #CFF;">|</td>
	</tr>
	</table>
 
	<p>Test table #2 (nobr CSS class):</p>
 
	<table style="width: 100%; border: 1px solid black;">
	<tr><td style="width: 1%;">
	<div class="nobr">Popular keywords: free hosting CSS HTML 
	guide tutorial information web-design</div>
	</td>
	<td style="width: 99%; background-color: #CFF;">|</td>
	</tr>
	</table>
 
	</body>
</html>
출처 : http://www.anyexample.com/webdev/css/nobr_tag_css_alternative_analog.xml

Posted by siche

2008/11/04 18:04 2008/11/04 18:04
, , ,
Response
No Trackback , No Comment
RSS
http://eos.pe.kr/rss/response/93

Leave a comment
[로그인][오픈아이디란?]
« 1 »
블로그 이미지

안돼는 것은 없다.. 항상 방법이 문제일 뿐이다.. 그 방법을 찾기 위해서는 노력할 뿐이다.. - siche

Archives

Recent Trackbacks

Calendar

«   2013/05   »
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  

Site Stats

Total hits:
813915
Today:
354
Yesterday:
304