How to center your HTML button

How to center your HTML button

How to center your HTML button itself? This is easy to find the idea. Set the center attribute in its parent tag, as follows:

<html>
<body>
 
<center><button onClick="myClick()">hit me</button></center>
 
<script>
function myClick()
{
 alert("123");
}
</script>
</body>
</html>

or:

<html>
<body>
 
<div align="center"><button onClick="myClick()">hit me</button></div>
 
<script>
function myClick()
{
 alert("123");
}
</script>
</body>
</html>

Center the button horizontally

Button is an inline block-level element display:inline-block;

So the solution is very simple, there are two ways:

Method 1:

 <div style="text-align:center">  
 <button>Button Center</button>                      
 </div>

Method 2:

<div>    
<button style="display:block;margin:0 auto">Button centered</button>                      
</div>

This is the end of this article on how to center your HTML button. For more information on centering HTML button, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Angular Cookie read and write operation code

>>:  10 Website Usability Tips Everyone Should Know

Recommend

How to monitor Tomcat using LambdaProbe

Introduction: Lambda Probe (formerly known as Tom...

Vue project @change multiple parameters to pass multiple events

First, there is only one change event. changeleve...

The specific use and difference between attribute and property in Vue

Table of contents As attribute and property value...

Use of Linux cal command

1. Command Introduction The cal (calendar) comman...

A graphic tutorial on how to install MySQL in Windows

Abstract: This article mainly explains how to ins...

MySQL 8.0.11 installation and configuration method graphic tutorial

The installation and configuration methods of MyS...

How to connect JDBC to MySQL 5.7

1. First prepare the MySQL and Eclipse environmen...

Learn the key knowledge that must be mastered in the Vue framework

1. What is Vue Vue is a progressive framework for...

HTML table tag tutorial (35): cross-column attribute COLSPAN

In a complex table structure, some cells span mul...

Parse CSS to extract image theme color function (tips)

background It all started when a classmate in the...

How to implement the strategy pattern in Javascript

Table of contents Overview Code Implementation Su...