看透不说透
Suivre

Après avoir suivi, vous pouvez suivre ses informations dynamiques en temps opportun

Notes de cours
  • Cours dans la section correspondante:Galerie d'images CSS

    <style> div.img { margin: 2px; border: 1px solid #0000ff; height: auto; width: auto; float: left; text-align: center; } div.img img { display: inline; margin: 3px; border: 1px solid #ffffff; } div.img a:hover img {border: 1px solid #0000ff;} div.desc { text-align: center; font-weight: normal; width: 120px; margin: 2px; } </style>

    2016-11-240个赞

  • Cours dans la section correspondante:filtre d'attribut jQuery

    [attribute] 定义:匹配包含给定属性的元素 [attribute=value] 定义:匹配给定的属性是某个特定值的元素 [attribute!=value] 定义:匹配给定的属性是不包含某个特定值的元素 [attribute^=value] 定义:匹配给定的属性是以某些值开始的元素 [attribute$=value] 定义:匹配给定的属性是以某些值结尾的元素 [attribute*=value] 定义:匹配给定的属性是以包含某些值的元素 [selector1][selector2][selectorN] 定义:复合属性选择器,需要同时满足多个条件时使用

    2016-11-240个赞