Good people have 3 columns in a space of 950px;
I made the calculations here on the calculator 950/3 = 316,6666666666667
Only when I convert this to css:
width: 316.6666666666667px;
nothing changes, it takes like it's width: 316px;
, I need it to fill the whole screen, it's missing a hairpin, but it does not fill.
I need a 10px
spacing for each column except the first column.
My html and css code:
<div class="works">
<h2>Serviços</h2>
<div class="works-boxes">
a
</div>
<div class="works-boxes">
a
</div>
<div class="works-boxes">
a
</div>
</div>
CSS
.works-boxes {
width: 316.66667px;
margin-top: 15px;
float: left;
background-color: #ddd;
border: 3px solid #fff;
}