风-fmgao

导航

伪类选择器

常用的几种伪类选择器。

没有访问的超链接a标签样式:

a:link {
  color: blue;
}

访问过的超链接a标签样式:

a:visited {
  color: gray;
}

鼠标悬浮在元素上应用样式:

a:hover {
  background-color: #eee; 
}

鼠标点击瞬间的样式:

a:active {
  color: green;
}

input输入框获取焦点时样式:

input:focus {
  outline: none;
  background-color: #eee;
}

posted on 2018-06-30 08:30  风-fmgao  阅读(111)  评论(0编辑  收藏  举报