The interactive pseudo-classes for links (and buttons) allow us to make sure the user knows what elements on the page are interactive and that they can use them to navigate the website.

Targeting the a tag with href attr:

a[href]:hover {
text-decoration: underline;
}

or

a:link:hover {
border: 2px solid green;
}

最新文章

  1. CSS 的定位方式和含义
  2. linux驱动之USB驱动程序
  3. vim 高亮显示配置
  4. 如何使用Jedis操作Redis消息队列
  5. CSS-animations和transitions性能:浏览器到底做了什么?
  6. 状态栏通知Notification的简单使用
  7. oldboy第二天学习
  8. oracle安装报错检查操作系统版本: 必须是5.1 or 5.2。实际为 6.1未通过
  9. MVC3在页面上获取当前控制器名称、Action名称以及路由参数
  10. shell 实例学习
  11. 在线生成PDF的网站-HTML 转 PDF 在线
  12. jquery的datatables第二次加载报错
  13. 使用bat脚本部署hexo到coding和github
  14. (三)JavaScript 语法
  15. [实战]MVC5+EF6+MySql企业网盘实战(4)——上传头像
  16. pip指定网址安装
  17. 【LOJ】#2548. 「JSOI2018」绝地反击
  18. hadoop伪分布模式安装
  19. 关于HttpURLConnection/HttpsURLConnection请求出现了io.filenotfoundexception:url的解决方法
  20. WordPress漏洞扫描工具WPScan

热门文章

  1. python--MySQL多表查询
  2. (原)剑指offer之位运算
  3. mysql启动错误排查-无法申请足够内存
  4. POJ 1651 区间DP Multiplication Puzzle
  5. HDU 3045 DP 斜率优化 Picnic Cows
  6. 18,OS模块
  7. Spring注解@Component、@Repository、@Service、@Controller
  8. 组合数学的卡特兰数 TOJ 3551: Game of Connections
  9. hlgoj 1766 Cubing
  10. POJ-3261 Milk Patterns,后缀数组+二分。。