white

영어 [hwaət, waət]

adj. 흰색, 무색, 흰색

n. 흰색; 인쇄 등) 여백을 남기다, 하얗게 하다, 표백하다

3인칭 단수: whites 복수: whites 현재 분사: whiting 과거 시제: whited 과거 분사: whited 비교급: whiter 최상급: whitest

space

English [speəs] US [spes]

n. 공백, 공백, 간격; 순간

vt. at 특정 간격

3인칭 단수: 공백 복수: 공백 현재 분사: 공백 과거 시제: 공백 과거 분사: 공백

자바스크립트 공백 속성 통사론

기능: 텍스트에서 공백 문자(예: 공백 및 줄 바꿈)를 처리하는 방법을 설정합니다.

구문: ​​Object.style.whiteSpace=normal|nowrap|pre

자바스크립트 공백 속성 예

<html>
<head>
<script type="text/javascript">
function removeWrapping()
{
document.getElementById("div1").style.whiteSpace="nowrap";
}
</script>
</head>
<body>

<div id="div1">
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</div>
<br />
<input type="button" onclick="removeWrapping()" 
value="Do not let the text wrap" />

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요