September 2017
Intermediate to advanced
450 pages
11h 24m
English
Now that we have Bootstrap loaded in our application, let's make the blog post page in our app responsively scale all the way down to mobile phone-sized devices:
<nav class="container-fluid"> <a routerLink="/posts">Posts</a> <a routerLink="/authors">Authors</a></nav><div class="container"> <router-outlet></router-outlet></div>
<div class="row"> <div class="col-3"> <p>Sidebar</p> </div> <div class="col-9"> <h3>Blog Posts</h3> <p>Blog Post 1</p> <p>Blog Post 2</p> <p>Blog Post 3</p> </div></div> ...
Read now
Unlock full access