반응형

http://www.w3schools.com/css/tryit.asp?filename=trycss_text_white-space
에서 본 예제

<html>
<head>
<style type="text/css">
p{
white-space:nowrap;
}
</style>
</head>
<body>

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.

</html>



p 테그로 했으나..
white-space:nowrap 요놈 땜시 오른족으로 쫘악~~~ 나열된다.
유용하게 써먹을때가 있을듯...


반응형
반응형

http://www.w3schools.com/tags/att_td_nowrap.asp 

에서 보니 요런게 있다...

Compatibility Notes

The nowrap attribute of <td> is deprecated, and is not supported in HTML 4.01 Strict / XHTML 1.0 Strict DTD.

Use CSS instead.

CSS syntax: <td style="white-space: nowrap">

CSS Example: no word wrapping in td

In our CSS tutorial you can find more details about the white-space property.

엄격한 DTD xthml 1.0 요놈은  nowrap  배재하고 지원되지 않는다네요.

항상 호환성 부분을 보고 코딩 하는 습관을 가져야 하겠다.

반응형
반응형
반응형

+ Recent posts