translate(-50%,-50%) in CSS achieves horizontal and vertical centering effect

translate(-50%,-50%) in CSS achieves horizontal and vertical centering effect

translate(-50%,-50%) attributes:
Move it up and left by 50% of its length and width to center it.

Unlike using margin to achieve centering, margin must know its own width and height, while translate can be centered without knowing the width and height. The percentage in the tranlate function is relative to the width and height.
(When top and left are 50%, the upper left corner of the window is used as the origin).

Example:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style media="screen">
        .container {
            position: relative;
            width: 50%;
        }

        .container img {
            width: 100%;
            display: block;
            height: auto;
        }

        .overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: 0.5s ease;
            background: rgb(0, 0, 0);
        }

        .container:hover .overlay {
            opacity: 0.5;
        }

        .text {
            color: white;
            font-size: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
        }
    </style>
</head>

<body>
    <h2>Fade-in effect</h2>

    <div class="container">
        <img src="./img/photo2.jpg" alt="Avatar" class="image">
        <div class="overlay">
            <div class="text">Hello World</div>
        </div>
    </div>
</body>

</html>

Effect:

insert image description here

This is the end of this article about how to achieve horizontal and vertical centering with translate(-50%, -50%) in CSS. For more information about horizontal and vertical centering with css translate, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  HTML vertical column display text to make the text display in vertical columns

>>:  A brief discussion on the design and optimization of MySQL tree structure tables

Recommend

An in-depth summary of MySQL time setting considerations

Does time really exist? Some people believe that ...

Detailed explanation of the process of building and running Docker containers

Simply pull the image, create a container and run...

How to use flat style to design websites

The essence of a flat website structure is simpli...

Detailed tutorial on deploying Hadoop cluster using Docker

Recently, I want to build a hadoop test cluster i...

Quickly solve the problem that the mysql57 service suddenly disappeared

one, G:\MySQL\MySQL Server 5.7\bin> mysqld --i...

XHTML Getting Started Tutorial: Using the Frame Tag

<br />The frame structure allows several web...

Parsing MySQL binlog

Table of contents 1. Introduction to binlog 2. Bi...

How to get the maximum or minimum value of a row in sql

Original data and target data Implement SQL state...

Mini Program to Implement Sieve Lottery

This article example shares the specific code of ...

Detailed explanation of Vue's caching method example

Recently, a new requirement "front-end cache...

4 solutions to mysql import csv errors

This is to commemorate the 4 pitfalls I stepped o...

Solve the problem of margin merging

1. Merge the margins of sibling elements The effe...

Nginx merges request connections and speeds up website access examples

Preface As one of the best web servers in the wor...

How to uninstall and reinstall Tomcat (with pictures and text)

Uninstall tomcat9 1. Since the installation of To...