Skip to content

Instantly share code, notes, and snippets.

@Khahory
Created September 15, 2020 21:16
Show Gist options
  • Save Khahory/a018caa2eacea9d587f02a297a6f9dff to your computer and use it in GitHub Desktop.
Save Khahory/a018caa2eacea9d587f02a297a6f9dff to your computer and use it in GitHub Desktop.
Div con imagen de fondo - Bulma
<div id="app">
<section class="hero is-success is-fullheight has-bg-img">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
Title
</h1>
<h2 class="subtitle">
Subtitle
</h2>
</div>
</div>
</section>
</div>
<script>
const app = new Vue({
el: '#app',
data: {
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment