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

MySQL data type selection principles

Table of contents Small but beautiful Keep it sim...

Vue implements paging function

This article example shares the specific code of ...

HTML+CSS to achieve cyberpunk style button

First look at the effect: Preface: I came up with...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...

JavaScript web form function communication full of practical information

1. Introduction Earlier we talked about the front...

Use IISMonitor to monitor web pages and automatically restart IIS

Table of contents 1. Tool Introduction 2. Workflo...

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

JavaScript form validation example

HTML forms are commonly used to collect user info...

Kali Linux Vmware virtual machine installation (illustration and text)

Preparation: 1. Install VMware workstation softwa...

Brief analysis of the MySQL character set causing database recovery errors

Importing data with incorrect MySQL character set...