有哪些css常用并且容易忽视的属性值

来源:互联网 发布:淘宝联盟怎么高佣金 编辑:程序博客网 时间:2024/04/29 21:47

  1、outline

  常见的输入框,点进去会有有个外边框,如何去掉,就用得到这个属性值:outline:none;

  默认:

  

  outline:none;

  

  2、nth-child(4n+1);

  3、odd表示奇数行,even表示偶数行;

  tr:nth-child(odd);

  .table-striped > tbody > tr:nth-child(odd) {

  background-color: #f9f9f9;

  }

  4、cursor:pointer 可以给标签加上“手势”,一般用于点击出现弹出的元素,因为不需要用a来写,可以很直观,增强用户体验。

0 0