Header

  1. View current page

    석영이의 낙서장!

Profile_image?t=1225438807&type=small
훗!~ 밥은 먹고 다니냥?
0

HTML td nobr

  • HTML td nobr

 table td 안에 nobr tag를 주어서 td 크기가 내용보다 작아지면 IE,Safari 에서는 "..." 으로 나옴 FF,Opera 에서는 "... " 으로 나오지 않고 그냥 잘려서 나옴

 

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3. <title> td nobr </title>
    <style type="text/css">
    td {
     text-overflow: ellipsis;
     overflow: hidden;
    }
    table {
     table-layout:fixed;
     width: 100%;
    }
    </style>
    </head>
    <body>
    <table border="1">
     <tbody>
     <tr>
      <td><nobr><span>테스트---------------------------------------1-1</nobr></span></td>
      <td><nobr>테스트1-2</nobr></td>
      <td><nobr>테스트1-3</nobr></td>
     </tr>
     <tr>
      <td><nobr>테스트2-1<nobr></td>
      <td><nobr>테스트2-2<nobr></td>
      <td><nobr>테스트2-3<nobr></td>
     </tr>
    </tbody>
    </table>
    </body>
    </html>
  4.  
  5.  

 td_nobr.html 예제파일

Tags

History

Last edited on 08/05/2008 23:59 by 김석영

Comments (0)

You must log in to leave a comment. Please sign in.