css - How can I change the background of a website using Bulma? -


so using css framework bulma.io. normally, without it, when doing body { background: black; } background turns black. when use bulma.io, background behind written text turns black , rest of website stays white. know how can make entire website turn black without framework?

can provide example of you're working with? snippet below shows how can change background color. other setting background-color property, set body height full height of view.

body {    background-color: black;    height: 100vh;  }
<!doctype html>  <html>  <head>  <link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.2/css/bulma.css" rel="stylesheet"/>  </head>  <body>  </body>  </html>


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -