前端框架:AdminLTE https://almsaeedstudio.com/themes/AdminLTE/index2.html
css
CSS學習教程: http://www.divcss5.com/rumen/r74.shtmlhtml
div 加滾動條: 父類定義高度和設置滾動屬性,當子類內容高度超過父類時就會出現滾動條:height: 400px;overflow-x:auto;前端
把兩個div橫向排列(div不換行顯示):
<div>
<div class="company_attest_left" style="display: inline-block; width: 49%;float:left"></div>
<div class="company_attest_right" style="width:49%;display:inline-block;">
</div>前端框架
列表顯示加省略號(...):
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100px;框架