Wednesday 19 October 2016

how to remove element.style in css

Hi I am using MVC. i am having a page where a cSS has been added for the title which is in <strong></strong>

I firebug it , it appears as
element.style {
color:#666666;
}
i dont know of from where it comes from..
but i am having a css applied for the same tag with other color. but it disappeared. How to remove the element.style globally..


Solution: 
It is possible to override inline styles from an external stylesheet
strong[style] { color: blue !important; } 
This works in most major browsers, Chrome, Safari, Firefox, IE8
It doesn't work (to my knowledge) in IE6 / IE7

C# LINQ Joins With SQL

There are  Different Types of SQL Joins  which are used to query data from more than one database tables. In this article, you will learn a...