css3pie

chrome/safari loses rounded corners during a jQuery slide transition

别来无恙 提交于 2019-12-02 04:22:32
问题 I am using the jquery script shown here - http://jqueryfordesigners.com/automatic-infinite-carousel/. I have applied my own images as rounded png's into the slider on my site - http://67.225.219.80/ All is well in firefox and IE9 using border-radius. You can see the rounded corners are maintained even with the slider is sliding during auto mode and even when the slider is controlled by the arrows. However in chrome/safari, the rounded corners disappear during the transition. In addition to

PIE CSS works in IE9 but not IE8

ε祈祈猫儿з 提交于 2019-12-02 03:34:51
For this project, I am using Tomcat 7 and have configured it to serve htc with content type of text/x-component <?xml version="1.0" encoding="UTF-8"?> <web-app ...> ... <mime-mapping> <extension>htc</extension> <mime-type>text/x-component</mime-type> </mime-mapping> </web-app> For some reason, it works in IE9 (gradients, drop shadows, rounded corners) but not in IE8, dont see any CSS3 in effect at all. In the developer console under styles/tracxe styles, I see behavior but I don't see anything like -pie-background for example. Is that a problem? What might be the cause, it seems wierd that it

chrome/safari loses rounded corners during a jQuery slide transition

▼魔方 西西 提交于 2019-12-01 23:10:21
I am using the jquery script shown here - http://jqueryfordesigners.com/automatic-infinite-carousel/ . I have applied my own images as rounded png's into the slider on my site - http://67.225.219.80/ All is well in firefox and IE9 using border-radius. You can see the rounded corners are maintained even with the slider is sliding during auto mode and even when the slider is controlled by the arrows. However in chrome/safari, the rounded corners disappear during the transition. In addition to giving the outer div wrapper rounded corners (border-radius, -webkit-border-radius, etc.), I have also

Will CSS3PIE .htc file load for other browsers even they don't need?

喜欢而已 提交于 2019-12-01 21:06:29
I'm using CSS3Pie to make round corners in IE which uses invalid CSS property behavior: url(/PIE.htc); If i keep this declarition in my main CSS will other browsers load this .htc file even they don't need this or only IE will load this file? Is there any benefit to keep behavior: url(/PIE.htc); is seperate IE conditional stylesheet in terms of performance? <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="ie8-and-down.css" /> <![endif]--> The whole code is like this border: 1px solid #696; padding: 60px 0; text-align: center; width: 200px; -webkit-border-radius: 8px; -moz-border

How to load css3 pie only for ie7 and 8? But not for 9

牧云@^-^@ 提交于 2019-12-01 11:14:30
This is css to use CSS3 PIE border: 1px solid #696; padding: 60px 0; text-align: center; width: 200px; -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; background: #EEFF99; behavior: url(/PIE.htc); Specially behavior: url(/PIE.htc); My question is will this PIE.htc be downloaded by all browser or only in IE 7 and 8? I need to show round corner in IE7 and 8 too. So i thought instead of using Modernizr and writing another class and and image for round corner, CSS3 PIE will be good solution because whenever we will change the color and thickness of border and height of

Facebook JS affecting CSS/@font-face in IE?

六月ゝ 毕业季﹏ 提交于 2019-12-01 09:19:52
问题 I seem to notice that Facebook's JS <div id="fb-root"></div> <script src="http://connect.facebook.net/en_US/all.js#appId=APP_ID&xfbml=1"></script> seems to affect my site's CSS in IE. eg. say headers use font1 and body use font2. sometimes, in IE all fonts use font1 or even swap, headers used font2 and body use font1 ... It also seem to affect some PIE CSS stuff. Anyone having the same problem? 回答1: I had the exact same problem. I use a downloaded font for my headers and on IE8, the Facebook

How to load css3 pie only for ie7 and 8? But not for 9

匆匆过客 提交于 2019-12-01 08:53:30
问题 This is css to use CSS3 PIE border: 1px solid #696; padding: 60px 0; text-align: center; width: 200px; -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; background: #EEFF99; behavior: url(/PIE.htc); Specially behavior: url(/PIE.htc); My question is will this PIE.htc be downloaded by all browser or only in IE 7 and 8? I need to show round corner in IE7 and 8 too. So i thought instead of using Modernizr and writing another class and and image for round corner, CSS3 PIE

CSS3PIE Not Working With border-radius [duplicate]

安稳与你 提交于 2019-11-30 23:40:15
This question already has an answer here: CSS3 PIE - Giving IE border-radius support not working? 7 answers I am trying to get CSS3PIE to work for my site so I can use border-radius in IE8 (and earlier). It works fine in all other browsers. Here's my CSS: #body_text_design{ border:2px solid black; background-color:#CCC; background-image:url(../pics/designbg.png); font-family:"Britannic Bold"; color:black; height:676px; width:675px; -webkit-border-radius:10px; -moz-border-radius: 10px; border-radius: 10px; margin-top:23px; overflow:hidden; behavior: url(PIE.htc); } And my HTML: <div id="body

How to apply -webkit-gradient to IE?

穿精又带淫゛_ 提交于 2019-11-30 16:06:39
I have the following css code: -webkit-gradient(linear, left bottom, left top, from(#5AE), to(#036)); Which displays the background very nicely in Chrome. Internet explorer just displays a white background. I tried applying CSS 3 pie, which didnt change anything. Following is my css: body { behavior: url(css3pie/PIE.htc); color: #000000; font-family: Arial, Helvetica, sans-serif; margin: 0px; padding: 0px; /*background:url("../image/bg.png") repeat scroll 0 0 transparent;*/ background: -webkit-gradient(linear, left bottom, left top, from(#5AE), to(#036)); } Thanks 0b10011 -webkit-gradient() is

Why are CSS3 PIE and other similar scripts not in use everywhere?

女生的网名这么多〃 提交于 2019-11-30 15:21:29
This question has already been asked at htc files: Why not to use them? , but the answer didn't answer anything really. The question is, why is something like CSS3 PIE not in use on many sites? I'd expect smaller ones to not know about it, but the one that caught my eye was Twitter, who doesn't use it. Is it because it's not standard? Or does it cause a noticeable slow-down of the site? Thank you for any responses. I can't speak for everyone, but my sense is that you don't see tools like these in use on large sites because: 1) They do incur a certain performance cost. CSS3 PIE in particular