Search Tools Links Login

Center a Button using CSS and HTML


To center a button in CSS and HTML, you may want to center it both horizontally and vertically within a given container. Below are various methods to achieve this:

Using Flexbox (Recommended)

Flexbox is a modern layout model that allows you to design complex layout structures with a more efficient and predictable way than traditional models, especially when it comes to distributing space and aligning items in complex layouts and when the sizes of your items are unknown or dynamic.

HTML:

<div class="container">
    <button class="myButton">Click Me</button>
</div>

CSS:

.container {
    display: flex;
    justify-content: center;  /* Horizontally center */
    align-items: center;      /* Vertically center */
    height: 300px;            /* Change this as per requirement */
    border: 1px solid black;  /* Just for visualization */
}
.myButton {
    padding: 10px 20px;
}

Using Grid

CSS Grid is another modern layout model that excels at dividing a page into major regions or defining the relationship in terms of size, position, and layer between parts of a content. It can also center items easily.

HTML:

<div class="container">
    <button class="myButton">Click Me</button>
</div>

CSS:

.container {
    display: grid;
    place-items: center;  /* Centers both horizontally and vertically */
    height: 300px;
    border: 1px solid black;
}
.myButton {
    padding: 10px 20px;
}

Absolute Positioning (Older Technique)

This method uses absolute positioning. It's a less flexible way, but it's still used in some cases.

HTML:

<div class="container">
    <button class="myButton">Click Me</button>
</div>

CSS:

.container {
    position: relative;
    height: 300px;
    border: 1px solid black;
}
.myButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
}

Choose the method that best fits your requirements and the browsers you're targeting. The Flexbox and Grid methods are modern and are supported in most of the recent browsers.

About this post

Posted: 2023-08-19
By: dwirch
Viewed: 142 times

Categories

Webmaster Related

CSS

ASP/ HTML

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.