textoverflow

by rootjang

HTML

<!DOCTYPE html>
<html lang="ko-KR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>textoverflow</title>
  <style>
    .content {
      border: 1px solid #ccc;
      width: 300px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .content:hover {
      overflow: visible;
    }
  </style>
</head>
<body>
  <p class="content">귀리는 베타글루칸(항암 및 면역증강작용을 가지고 있는 불소화성 다당류)성분을 포함하고 있다.</p>
  
  <p>
  말 줄임표에 마우스를 올려 보시기 바랍니다.(over the mouse pointer)
  </p>
</body>
</html>