निम्नलिखित उदाहरण पर विचार करें: ( लाइव डेमो यहां )
$(function() {
console.log("width = " + $("td").width());
});
td {
border: 1px solid black;
width: 50px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<tbody>
<tr>
<td>Hello Stack Overflow</td>
</tr>
</tbody>
</table>
आउटपुट है: width = 139
और दीर्घवृत्त प्रकट नहीं होता है।
मुझे यहां क्या समझ नहीं आ रहा है?
width
और height
टेबल की कोशिकाओं को हमेशा न्यूनतम चौड़ाई और ऊंचाई के रूप में उपयोग किया जाता है । टेबल सेल अलग हैं!