Monday, August 5, 2013

Apply CSS only to IE

To apply css file only for IE use this tag

<%-- Added a version number to force refresh --%>

<!--[if lt IE 9]>
        <link rel="stylesheet" type="text/css" media="screen" href="/_layouts/Myfeature/css/MyIEStyles.css?v=5" />
<![endif]-->


No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...