CSS removes the dotted border generated when clicking a link. Compatible with browsers that meet W3C standards

CSS removes the dotted border generated when clicking a link. Compatible with browsers that meet W3C standards

Part of the code:

Copy code
The code is as follows:

<ul class="about_nav">
<li class="nav1"><a href="about.html" class="fontnav ">123WORDPRESS.COM</a></li>
<li class="nav2"><a href="about_webintro.html" class="fontnav">123WORDPRESS.COM</a></li>
<li class="nav3"><a href="about_operation.html" class="fontnav">123WORDPRESS.COM</a></li>
<li class="nav4"><a href="about_system.html" class="fontnav">123WORDPRESS.COM</a></li>
<li class="nav5"><a href="about_contantus.html" class="fontnav">123WORDPRESS.COM</a></li>
</ul>

Solution:
1. Add outline:none in CSS;

Copy code
The code is as follows:

a.fontnav { text-align:left;color:#555; text-decoration:none; outline:none}

ps: outline:none is only recognized in Firefox, not supported in IE.
2. In IE: add "hidefocus="true" to the HTML
<li class="nav2"><a href="about_webintro.html" class="fontnav" hidefocus=true>123WORDPRESS.COM</a></li>

<<:  Put frameset in body through iframe

>>:  Explain the deployment and configuration of Clickhouse Docker cluster with examples

Recommend

How to strike a balance between ease of use and security in the login interface

Whether you are a web designer or a UI designer, ...

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites JDK has been installed echo $PAT...

How to center your HTML button

How to center your HTML button itself? This is ea...

What is Nginx load balancing and how to configure it

What is Load Balancing Load balancing is mainly a...

Tutorial on importing and exporting Docker containers

background The popularity of Docker is closely re...

Implementation of Nginx configuration of multi-port and multi-domain name access

To deploy multiple sites on a server, you need to...

Analyze Tomcat architecture principles to architecture design

Table of contents 1. Learning Objectives 1.1. Mas...

Postman automated interface testing practice

Table of contents Background Description Creating...

Solution to ElementUI's this.$notify.close() call not working

Table of contents Requirement Description Problem...

js to achieve a simple lottery function

This article shares the specific code of js to im...

The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

We often need to control the hidden, transparent ...

Mysql inner join on usage examples (must read)

Grammatical rules SELECT column_name(s) FROM tabl...

Detailed explanation of EXT series file system formats in Linux

Linux File System Common hard disks are shown in ...