實現方法:css
html: <div class="outer2"> <div class="outer"> <span class="inner">朗御2單元29F弱電井F-RRU637677_05</span> </div> </div> css: .outer{ max-width: 100px; overflow-x: hidden; white-space: nowrap; text-overflow: ellipsis; /* 若是超過字段須要顯示爲... */ } .inner{ max-width: 400px; }
max-width內外元素都要設置,爲的是實現元素的溢出效果;html
overflow-x: hidden; 溢出spa
white-space: nowrap; 內容不換行htm
text-overflow: ellipsis; 超過字段顯示省略號ip
以上三個樣式設置是爲了實現上圖所示的效果,三者必須同時使用。it
注意:此方式只是用於一個層級嵌套的元素,若是設置在類outer2,class
則不會出現這個效果,注意這個坑。方法