如果在一个标签上两类并用,css样式表中引用时,两个类必须写在一起,不能有空格。

例:

<html>

  <style type="text/css">

    .mui-table-view-cell.mui-collapse{

     border:1px solid red;

    }

  </style>

  <body>

    <div class="mui-table-view-cell mui-collapse"></div>

  </body>

</html>

原文地址:https://www.cnblogs.com/jiunie/p/7830857.html