Home > Web Front-end > CSS Tutorial > How to Eliminate Outline Borders From Input Buttons in Browsers?

How to Eliminate Outline Borders From Input Buttons in Browsers?

DDD
Release: 2024-11-23 19:01:12
Original
992 people have browsed it

How to Eliminate Outline Borders From Input Buttons in Browsers?

Styling Input Buttons to Eliminate Outline Borders

Certain browsers render an outline border around input buttons, which can affect the button's aesthetics and user experience. This issue arises when the button loses focus, leaving behind an unsightly border. To remove this border, the "outline" property can be employed.

In the provided code snippet, the CSS for the input button is defined without an outline property. To remove the border, add the following line:

outline: none;
Copy after login

Here's the updated CSS code:

input[type=button] {
  width: 120px;
  height: 60px;
  margin-left: 35px;
  display: block;
  background-color: gray;
  color: white;
  border: none;
  outline: none;
}
Copy after login

This modified styling will eliminate the outline border from the input button in Chrome and other browsers that support the "outline" property.

By specifying "outline: none;", the browser is instructed to remove any border or glow around the button, regardless of its focus state. This ensures a clean and uniform appearance for the button throughout the user's interaction.

The above is the detailed content of How to Eliminate Outline Borders From Input Buttons in Browsers?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template