zoltan-dulac/cssSandpaper

text-shadow doesn't work in IE8

Closed this issue · 2 comments

Here's an example of a page with a text-shadow that doesn't work in IE8. No shadow shows up. It works in Chrome, FF, and Safari just fine.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>css-sandpaper</title>
  <style>
h1 {
  color: green;
  font-size: 3.2em;
  text-shadow: 0px 3px 3px rgba(0,0,0,0.5);
}
</style><script type="text/javascript" src="/javascripts/EventHelpers.js"></script>
<script type="text/javascript" src="/javascripts/cssQuery-p.js"></script>
<script type="text/javascript" src="/javascripts/sylvester.js"></script>
<script type="text/javascript" src="/javascripts/cssSandpaper.js"></script>

</head>
<body class="blank-layout">

  <div id="content">
    <h1>This is a text-shadow Test</h1>
  </div>

</body>
</html>

Also checked and IE9 doesn't work.

duh. just noticed I was missing the textshadow.js file.