2
I’m building a layout using the framework Bulma.. So far it’s as follows.
My question is:
How to do with CSS
all my div
side get painted? As in the image above, I want to paint the white space that is scratched red.
Here’s my html
.
<div class="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);
}
Young without the code it is difficult to answer you. But surely it is margin setting! Put the code ai pq the way it is complicates...
– hugocsl
@hugocsl posted the code, it has to do with the margins, but did not want to take the edge of the element, only make the color go beyond the margin.
– MeuChapeu