নীচের লিঙ্কটি এই সমস্যার খাঁটি এইচটিএমএল / সিএসএস সমাধান সরবরাহ করে।
ব্রাউজার সমর্থন - যেমন নিবন্ধে বলা হয়েছে:
এখন পর্যন্ত আমরা সাফারি 5.0, আইই 9 (অবশ্যই স্ট্যান্ডার্ড মোডে থাকতে হবে), অপেরা 12 এবং ফায়ারফক্স 15 এ পরীক্ষা করেছি।
পুরানো ব্রাউজারগুলি এখনও বেশ ভালভাবে কাজ করবে, কারণ লেআউটের মাংসটি স্বাভাবিক অবস্থান, মার্জিন এবং প্যাডিং বৈশিষ্ট্যে রয়েছে। যদি আপনার প্ল্যাটফর্মটি পুরানো হয় (যেমন ফায়ারফক্স 3.6, আই 8), আপনি পদ্ধতিটি ব্যবহার করতে পারেন তবে একক পিএনজি চিত্র বা ডাইরেক্টএক্স ফিল্টার হিসাবে গ্রেডিয়েন্টটি আবার করতে পারেন।
http://www.mobify.com/dev/multiline-ellipsis-in-pure-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); }
এইচটিএমএল:
<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>
(পরীক্ষার জন্য ব্রাউজারের উইন্ডোটির আকার পরিবর্তন করুন)