bertzhang 2020-06-02
input:-webkit-autofill { box-shadow: 0 0 0px 1000px #fff inset !important;}
input:-internal-autofill-previewed,input:-internal-autofill-selected {-webkit-text-fill-color: #807c7c;transition: background-color 5000s ease-out 0.5s;}
3. 文本显示两行做溢出处理:
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
4. 想要做一个div禁用,不可点击的效果,由于div没有disabled属性,禁用div可以使用增加样式的方法:
<div class="demo" style="pointer-events:none;"></div>
<table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%&qu