Home Daily Programming HTML Knowledge How to implement a simple button style using HTML

How to implement a simple button style using HTML

Nov 10, 2018 pm 04:31 PM

This article mainly introduces how to use HTML to implement a simple button style.

In the process of web design, button setting can be said to be the most common and basic HTML/CSS knowledge and skill.

Recommended reference video tutorial: "HTML Tutorial"

The following is a code example to introduce to novice friends how to use HTML to implement a simple button style.

button button styleThe code example is as follows:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>button按钮样式</title>
    <style>
        .button1 {
            -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
            padding: 16px 32px;
            text-align: center;
            background-color: white;
            color: black;
            border: 2px solid #4CAF50;
            border-radius:5px;
        }
        .button1:hover {
            background-color: #4CAF50;
            color: white;
        }
    </style>
</head>
<body>
<button class="button1">Green</button>
</body>
</html>
Copy after login

The effect is as follows:

How to implement a simple button style using HTML

Introduction to related attributes:

transition-duration The attribute specifies the time it takes to complete the transition effect. The -webkit-transition-duration attribute is for compatibility with the browser Safari. The

text-align attribute specifies the horizontal alignment of the text in the element. A value of center means that the text is centered horizontally.

border-radius property allows you to add a rounded border to an element.

:hover The selector is used to select the element on which the mouse pointer is floating. Simply put, it sets a new style when the mouse moves to the specified element.

Introduction to related tags:

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)