Skip to content

Instantly share code, notes, and snippets.

@libo1106
Last active December 13, 2015 21:18
Show Gist options
  • Select an option

  • Save libo1106/4976106 to your computer and use it in GitHub Desktop.

Select an option

Save libo1106/4976106 to your computer and use it in GitHub Desktop.
去除focus中的虚线框
<html>
<head>
<style>
a:focus{
outline:none;
}
</style>
</head>
<body>
<a href="#" hidefocus="true" >链接</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment