아래 링크는이 문제에 대한 순수한 HTML / CSS 솔루션을 제공합니다.
브라우저 지원-기사에 명시된대로 :
지금까지 Safari 5.0, IE 9 (표준 모드), Opera 12 및 Firefox 15에서 테스트했습니다.
이전 버전의 브라우저는 레이아웃의 고기가 일반적인 위치, 여백 및 패딩 속성에 있기 때문에 여전히 잘 작동합니다. 플랫폼이 오래된 경우 (예 : Firefox 3.6, IE 8)이 방법을 사용하지만 그라디언트를 독립형 PNG 이미지 또는 DirectX 필터로 다시 실행할 수 있습니다.
http://www.mobify.com/dev/multiline-ellipsis-in-pure-css
CSS :
p { margin: 0; padding: 0; font-family: sans-serif;}
.ellipsis {
overflow: hidden;
height: 200px;
line-height: 25px;
margin: 20px;
border: 5px solid #AAA; }
.ellipsis:before {
content:"";
float: left;
width: 5px; height: 200px; }
.ellipsis > *:first-child {
float: right;
width: 100%;
margin-left: -5px; }
.ellipsis:after {
content: "\02026";
box-sizing: content-box;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
float: right; position: relative;
top: -25px; left: 100%;
width: 3em; margin-left: -3em;
padding-right: 5px;
text-align: right;
background: -webkit-gradient(linear, left top, right top,
from(rgba(255, 255, 255, 0)), to(white), color-stop(50%, white));
background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white); }
HTML :
<div class="ellipsis">
<div>
<p>Call me Ishmael. Some years ago – never mind how long precisely – having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen, and regulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos get such an upper hand of me, that it requires a strong moral principle to prevent me from deliberately stepping into the street, and methodically knocking people's hats off – then, I account it high time to get to sea as soon as I can.</p>
</div>
</div>
(테스트를 위해 브라우저 창 크기 조정)