How do I make the following horizontal instead of the (apparent default) of vertical? It is located within navigation.component.html within my Angular 5.2.7 application that wa
Here's what I did to handle that horizontal navbar issue:
name .lists_class { width: 100%; } .link_class { display: inline; float: left; width: min-content; }
The key for me was adjusting the width. Hope this works/helps, cheers!