I have been trying to use views for my sample practice.The scenario is the index.html contains navigation-header and footer. Any options we select from navigation header changes the view in between navigation bar and footer.
The problem which I am facing if that the views which are being loaded, also overrides the css attributes of index.html. It results in distorted navigation-header.
<nav class="navbar navbar-fixed-top navbar-inverse" role="navigation">
Its also happening with other div tags. One way is to get into those long css codes and change them, but I found out that we can decide which css and js file to load in a view using DIRECTIVES in AngularJS.
I found below links but it couldn't help me in loading the css file for the index.html page (which is the first page which is getting loaded).
Link --> [How to include view/partial specific styling in AngularJS
Can someone gimme any idea?