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

Teach you MySQL query optimization analysis tutorial step by step

Preface MySQL is a relational database with stron...

Detailed description of the use of advanced configuration of Firewalld in Linux

IP masquerading and port forwarding Firewalld sup...

In-depth explanation of various binary object relationships in JavaScript

Table of contents Preface Relationships between v...

Problems encountered by MySQL nested transactions

MySQL supports nested transactions, but not many ...

CSS method of controlling element height from bottom to top and from top to bottom

Let’s start the discussion from a common question...

MySQL permissions and database design case study

Permissions and database design User Management U...

Display and hide HTML elements through display or visibility

Sometimes we need to control whether HTML elements...

Suggestions on creating business HTML emails

Through permission-based email marketing, not onl...

onfocus="this.blur()" is hated by blind webmasters

When talking about the screen reading software op...

How to collect Nginx logs using Filebeat

Nginx logs can be used to analyze user address lo...

Will mysql's in invalidate the index?

Will mysql's IN invalidate the index? Won'...

HTML form tag tutorial (1):

Forms are a major external form for implementing ...

How CSS affects the white screen time during initial loading

Rendering pipeline with external css files In the...

Beginners learn some HTML tags (1)

Beginners can learn HTML by understanding some HT...

How to build php7 with docker custom image

First, perform a simple Docker installation. To c...