1.去除IE输入框的叉号

/* 去除IE输入框的叉号 */
::-ms-clear, ::-ms-reveal{
    display:none;
}

 

2.前端多行展现代码,多余部分使用...代替

div{
  height:51px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  word-break:normal;    
}

 

相关文章:

  • 2021-12-12
  • 2021-05-12
  • 2022-12-23
  • 2021-09-02
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2022-12-23
  • 2021-12-11
  • 2021-11-04
  • 2022-12-23
相关资源
相似解决方案