:은 제목 옆에있을 줄임표와 텍스트를 잘린다이 같은 고전 줄임표로 잘립니다 제목과 요약이 너무 긴 경우, 내가 좋아하는 것 옆에 내가 요약을하고 싶은
내가 정의 할 요약의 폭을 원하지 않는
내 제목이 내가 원하는 매우 긴 텍스트이다는 ..., 나는 그것이 같은 모든 방을 소요 싶습니다 선. overflow: hidden
과 text-overflow: ellipsis
을 사용하려했지만 잘린 텍스트를 제목 옆에 넣을 수 없습니다. 텍스트가 제목 옆에 있으면 요약이 잘리지 않습니다. 텍스트가 잘 리면 제목 옆에 없습니다.
이
내 시도의 일부입니다 : CSS를<h2 class="title">
My Title
<span class="tiny shortening">This is a very long text that I want to shorten This is a very long text that I want to shorten This is a very long text that I want to shorten This is a very long text that I want to shorten shorten</span>
</h2>
<h2>
My Title
<div class="tiny shortening">This is a very long text that I want to shorten This is a very long text that I want to shorten This is a very long text that I want to shorten This is a very long text that I want to shorten </div>
</h2>
당신은 폭과 같은 단축에 폭을 설정해야
.title {
white-space: nowrap;
}
.inline {
display: inline;
}
.tiny {
font-size: 70%;
}
.shortening {
white-space: nowrap;
overflow: hidden !important;
text-overflow: ellipsis;
}
.shortening에서 스타일을 .title로 이동해보세요. –
고맙습니다. –