How to implement CSS mask full screen center alignment

How to implement CSS mask full screen center alignment

The specific code is as follows:

<style>
#toastLoaderFullScreen {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(224, 38, 38, 0.5);
}
#toastLoader {
   position: absolute;
   left: 50%;
   top: 45%;
   width: 350px;
   margin-left: -19px;
   /* background-color: blue; */
}
#toastLoaderText {
    position: fixed;
    top: 53%;
    left: 50%;
    width: 250px;
    margin-top: -10px;
    margin-left: -125px;
    word-wrap:break-word; /*Automatic line break*/
    text-align: center;
    /* background-color: red; */
}
</style>
<template>
    <div id="toastLoaderFullScreen">
        <div>
             <mu-circular-progress id="toastLoader" :size="40" color="rgb(24, 143, 254)" v-show="isToastLoader"></mu-circular-progress>
             <div id="toastLoaderText">
                 <p>Logging in</p>
             </div>
        </div>
    </div>
</template>
<script>
export default {
    data() {
        return {
            isToastLoader: true
        }
    },
    created() {
        // setTimeout(() => {
        // this.isToastLoader = false
        // }, 2000)
    },
    methods: {
    }
}
</script> 

Summarize

The above is the implementation method of CSS mask full-screen center alignment introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Windows Server 2016 Remote Desktop Services Configuration and License Activation (2 Users)

>>:  Introduction to the usage of common XHTML tags

Recommend

Implementation of CSS3 3D cool cube transformation animation

I love coding, it makes me happy! Hello everyone,...

Detailed explanation of the TARGET attribute of the HTML hyperlink tag A

The hyperlink <a> tag represents a link poin...

Modify the boot time of grub in ubuntu

The online search to modify the grub startup time...

Operate on two columns of data as new columns in sql

As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...

MySql index improves query speed common methods code examples

Use indexes to speed up queries 1. Introduction I...

How to add a disk in Vmware: Expand the disk

This article describes how to add or expand a dis...

5 ways to achieve the diagonal header effect in the table

Everyone must be familiar with table. We often en...

HTML+CSS to achieve simple navigation bar function

Without further ado, I'll go straight to the ...

Summary of mysqladmin daily management commands under MySQL (must read)

The usage format of the mysqladmin tool is: mysql...

Web designer is a suitable talent

<br />There is no road in the world. When mo...

A brief discussion on several advantages of Vue3

Table of contents 1. Source code 1.1 Monorepo 1.2...

CentOS8 network card configuration file

1. Introduction CentOS8 system update, the new ve...

Summary of MySQL LOAD_FILE() function method

In MySQL, the LOAD_FILE() function reads a file a...