[Vuejs]-Make image occupy the entire viewport

1👍

You could always apply:

.container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
}

To the container, it’ll get it done, but it’s pretty severe in terms of properly structuring stuff.

Leave a comment