1
I have a system where the front was made with AngularJS
. In that system I have the page index.html
where I declare all the libraries, on that same page I have
o seguinte trecho de código:
<div id="wrapper">
<hamburger-toggle state="stateModel" id="menu-toggle" href="#menu"></hamburger-toggle>
<div ng-view></div>
</div>
I have a div
which has the CSS class wrapper
, and within that div
I have another one where I carry all my pages.
The problem is that my login page is loaded into this div
with class wrapper
, and this class defaults the entire page. I would like to ignore this class only on my login page.
I tried to do that:
#wrapper input:not(.ignoreCss) {...}
And at the beginning of the login page I did this:
<div class="ignoreCss">
...
But it didn’t work. How to solve this problem?
What would that be
input
in your CSS ?– Diego Souza
So, I didn’t understand either, it was an example that I found of how to ignore a css class in one part of the page: http://answall.com/questions/14639/ignorr-css-determinado-trecho-da-p%C3%A1gina
– DiegoAugusto
Dai tried to implement but nothing happened kk
– DiegoAugusto
You use Jquery?
– feresjorge
I’m using Angular, I haven’t used any Jquery yet
– DiegoAugusto