ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [HTML & CSS] 말줄임표 예제
    ETC 2022. 1. 22. 14:35
    반응형
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset='utf-8'>
        <meta http-equiv='X-UA-Compatible' content='IE=edge'>
        <title>Page Title</title>
        <meta name='viewport' content='width=device-width, initial-scale=1'>
    </head>
    <style>
        .txt_line {
          width:70px;
          padding:0 5px;
          overflow:hidden;
          text-overflow:ellipsis;
          white-space:nowrap;
        }
    </style>
    <body>
        <div style="width:100px;height:100px;">
            <div class='txt_line'>this text not show all.</div>
        </div>
    </body>
    </html>

     

    결과

    Page Title
    this text not show all.
    반응형

    댓글

Designed by Tistory.