Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Issues with your code:</p> <ul> <li><strong><code>background-color: rgba(91, 94, 85, 0.5) !important;</code></strong><br> This line seems OK. It's very likely that the <code>!important</code> flag is redundant, though.</li> <li><strong><code>filter:progid:DXImageTransform.Microsoft.gradient( ... );</code></strong><br> This line is also OK, although the <a href="https://stackoverflow.com/questions/7546638/css3-cross-browser-linear-gradient/7546655#7546655"><code>-ms-filter: "...";</code> syntax is preferred in IE8+</a>.</li> <li><p><strong><code>filter:ms-linear-gradient(startColorstr=#7F5B5E55,endColorstr=#7F5B5E55);</code></strong><br> Here starts the trouble:</p> <ol> <li>Internet Explorer's vendor-prefix is <code>-ms-</code>, (with the hyphen at the start).</li> <li><a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh453527.aspx" rel="nofollow noreferrer"><code>-ms-linear-gradient</code></a> is a value for <strong><code>background</code>, not <code>filter</code></strong>.<br> Also, this value is only supported as of IE 10...</li> </ol></li> <li><strong><code>//fix for round corner edges in IE9</code></strong> Comments in CSS are in this format: <strong><code>/* comment */</code></strong>.<br> No exceptions.</li> </ul> <p>Fix:</p> <pre><code>background-color: rgba(91, 94, 85, 0.5) !important; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F5B5E55,endColorstr=#7F5B5E55); -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F5B5E55,endColorstr=#7F5B5E55)"; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload