12345678910111213141516171819202122232425262728 |
- html, body{
- background: #F7F8FA;
- }
- *{
- margin: 0;
- padding: 0;
- }
- ul,li{
- list-style: none;
- }
- .clearfix {
- zoom: 1
- }
- .clearfix:after {
- display: block;
- clear: both;
- overflow: hidden;
- width: 0;
- content: '';
- }
- .ellipsis{
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- table,tr,td{
- list-style: none;
- }
|