[Vuejs]-Fill the page entirely with background color

0👍

just write in your body tag it will solve your problem

bgcolor="green"

0👍

Use CSS to get the background color changed, and ensure the body (document) is at least 100% of the viewport height :

body {
  background-color: green;
  min-height: 100vh;
}

To align “CRUD” to the left, use the Bootstrap utility class “text-left”:

<h1 class="text-left">CRUD</h1>

https://getbootstrap.com/docs/4.3/utilities/text/

https://bootstrap-vue.js.org/docs/reference/utility-classes

Leave a comment