Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能用 CSS3 截断一个超出包含框(如 div 或段落)的单词?该white-space: nowrap;属性对我不起作用,因为我的文本是多行编写的,并且我的文本是white-space: nowrap;单行的。
white-space: nowrap;
这是我的问题的屏幕截图:
JS:
max_length = 20; my_full_text = "My long long text aksjdhfka jshdf kjahds fasdf"; if(my_full_text.length >= max_length){ trimmed_text = my_full_text.substring(0, max_length); }else{ trimmed_text = my_full_text; } alert(trimmed_text)
20您希望文本的最大长度在哪里。
20