টেক্সট ওভারফ্লো ব্যবহার করুন টেক্সট ওভারফ্লো সমস্যা মোকাবেলা করার জন্য সম্পত্তি। টেক্সট ধারণকারী উপাদান ওভারফ্লো হলে উপবৃত্ত যোগ করুন।
উদাহরণ
জাভাস্ক্রিপ্ট -
<!DOCTYPE html>
<html>
<head>
<style>
#myID {
border: 2px solid blue;
background-color: gray;
overflow: hidden;
text-overflow: visible;
width: 200px;
white-space: nowrap;
}
</style>
</head>
<body>
<button onclick = "display()"> Click </button>
<div id = "myID">
This is Demo Text! This is Demo Text! This is Demo Text!<br>
This is Demo Text! This is Demo Text! This is Demo Text!<br>
This is Demo Text! This is Demo Text! This is Demo Text!<br>
This is Demo Text! This is Demo Text! This is Demo Text!<br>
</div>
<script>
function display() {
document.getElementById("myID").style.textOverflow = "ellipsis";
}
</script>
</body>
</html>