css - IE11 sometimes not displaying entire H1 -
please take @ following test site: http://adroity.be/ys/test.php
when refreshing page in ie11 notice final 'e' not showing. show hover on title. don't have access other versions of ie don't know if limited ie11.
i'm using google font (oswald). here's relevant code:
html
<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1"> <link rel='stylesheet' href='http://fonts.googleapis.com/css?family=oswald:400,300,700'> <link rel='stylesheet" href='style.css'> </head> <body> <h1><a href="/">yellowsubmarine</a></h1> </body> </html>
style.css
body { font-family: "oswald",sans-serif; } h1 { font-size: 130px; } h1 { font-weight: 700; text-transform: uppercase; }
frankly have no clue how start troubleshooting. appreciated.
Comments
Post a Comment