Answer the question
In order to leave comments, you need to log in
How to limit css action on page?
I have a style.css where my styles are described and everything suits me.
But if I connect any framework (foundation.css), then partially the styles of tables and text are taken from the framework.
Is it possible to restrict css to a specific container?
Answer the question
In order to leave comments, you need to log in
1) The framework is connected (foundation.css)
2) Your style.css is connected
In your style.css, redefine what you need.
1) Redefine CSS
Alternatively, don't forget !important
For example:
p {
background: url(images/tune1.png) no-repeat !important;
}
$(document).ready(function() {
$('#celebs tbody tr:even').css('background-color','#dddddd');
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question