html - Angular2 routing click on menu item -


i'm using angular2. right user has click on menu item text go page:

<li><a [routerlink]="['/login']">login</a></li> 

enter image description here

how can make sure when user clicks on blue goes next page? (i use flexbox).

thankyou

sounds css problem me. a elements inline default. can make them block-level take available space:

li {   display: block; } 

Comments

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -