I'm putting together a layout using the framework Bulma.io . So far it's as follows.
Myquestionis:
HowdoICSS
allmydiv
sidebepainted?Asintheimageabove,Iwanttopaintthewhitespacethatisscratchedred.
Here'smyhtml
.
<divclass="container is-fluid">
<div class="columns">
<aside class="column is-narrow aside hero is-fullheight">
<div style="width: 200px;">
<p class="notification is-info"></p>
</div>
</aside>
<div class="column">
<p class="notification is-warning"></p>
</div>
</div>
</div>
And the css
used to color the div
lateral.
.aside {
display: block;
background-color: rgb(58, 73, 83);
}