html - css linear-gradient in Internet Explorer 9 or in old a version -



html - css linear-gradient in Internet Explorer 9 or in old a version -

i utilize linear gradient tag making skewed line 1px width. in ie looks blurred. other browsers (opera, google chrome, firefox, safari) show line correctly.

@media (min-width: 986px) { .issue .issue-descr { border-top: solid 1px #fff; } .issue .issue-descr:after { content: ""; background: -ms-linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%); background: -webkit-linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%); background: -moz-linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%); background: linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%); width: 40px; height: 30px; } }

https://www.dropbox.com/s/rru7lqu1obshalo/internetexplorer.jpg?dl=0 ie https://www.dropbox.com/s/33mi3zhd3oys12t/chrome.jpg?dl=0 - google chrome

fixed

@media (min-width: 986px) { .issue .issue-descr { border-top: solid 1px #fff; } .issue .issue-descr:after { content: ""; background: linear-gradient(to top right, rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) calc(50% - 1px), rgba(255, 255, 255, 1) 25px, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 20px); width:40px; height: 30px; } }

html css html5 css3

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -