:star2: 1577 | @skyc0der |http://www.freecodecamp.com/skyc0der
npm run build
@SavvasLimassol
Yeah notice how it doesn't spread to the edges? :stuck_out_tongue: How do I fix that?
By default bootstrap adds
.container-fluid {
padding-right: 15px;
padding-left: 15px;
}
So you need to override them to remove that padding
.container-fluid {
padding-right: 0;
padding-left: 0;
}
:cookie: 120 | @kowalatam |http://www.freecodecamp.com/kowalatam
@SavvasLimassol
Hello guys, I am working on my portfolio and I want to split the page into sections similar to the example there is in the challenge. How should I do this? Should I use tables?
Tables is not recommended , use bootstrap grids http://getbootstrap.com/css/#grid
:cookie: 700 | @vinaypuppal |http://www.freecodecamp.com/vinaypuppal