I am using bootstrap,however I found some problems if I want to delete some css styles defined by bootstrap.
For example,there is a style by bootstrap:
img{
max-height:100%;
}
Now,how about if I want to remove this attribute?
I have tried this:
img{
max-height:"";
}
It seems that this does not work.
So I use javascript instead:
$("img").each(function(){
$(this).css("maxWidth","");
});
Any other good idea?
use
max-height:none(the initial value formax-height) and make sure this is declared below the bootstrap css file.