Outline

Ok, so I really LOVE Stackblitz for little Angular projects, but plain-jane CSS/HTML is terrible. So adding Bootstrap to my projects is super valuable. Makes it so easy to make them look good quickly. Here's how to do it.

First, add the bootstrap npm module to the dependencies section.

hit enter. It'll also prompt you to add jQuery and popper (soon to change in Bootstrap 5...no more jQuery)

Next, in the styles.css file, import the bootstrap styles.

@import '~bootstrap/dist/css/bootstrap.min.css';

That's it! Simple and easy.

And now you can do this:

 

I finished! On to the next chapter