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>
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
Post a Comment