Questions tagged [css3pie]

CSS3 PIE makes Internet Explorer 6-9 capable of rendering several of the CSS3 decoration features.

PIE enables rendering of several CSS3 decoration features in IE6-9.

Currently it supports:

  • border-radius
  • box-shadow
  • border-image
  • multiple background images
  • linear-gradient as background image
  • RGBA colors

This is achieved via two Microsoft proprietary elements: Vector Markup Language and HTML-Components.

given the following example CSS3-Feature:

#myElement {
    border-radius: 10px;
}

In order to enable the CSS3 feature in Internet Explorer the only thing to do is simply adding the following rule:

#myElement {
    ...
    behavior: url(PIE.htc);
}

In addition to the traditional PIE.htc behavior, the distribution now also includes a pure JavaScript version, so that the User in not bound to using the .htc file.

The official Website: http://css3pie.com/

298 questions
1
vote
1 answer

CSS3PIE with ASP.NET MVC3

I'm trying to get css3pie to work with asp.net mvc, but for some reason it's not working. I have a view which contains inline css which looks like this: @{ ViewBag.Title = "Home Page"; }
zSynopsis
  • 4,854
  • 21
  • 69
  • 106
1
vote
2 answers

Rounded Corners CSSPIE + CSS Gradient

We have an issue whereby we are using this code below. Its just a basic box with rounded corners and a gradient (and we apply CSSPie to it). We've noticed in all IE's we can't keep the rounded corners on this element in IE because of the gradient…
williamsandonz
  • 15,864
  • 23
  • 100
  • 186
1
vote
1 answer

jQuery cycle plugin paging + CSS3PIE

I am using the jQuery cycle plugin for a slideshow of images. With rounded bullets as pagers (because it's all the rage now so it seems). This worked perfectly in the 'modern' browsers except for IE. It is messing up the activePagerClass on the…
1
vote
1 answer

how to shine the background color (glossy)in htlml and css

I have created the dashboard using angular and I have placed the background color of balck and greay usig linear-gradient,but it is not looking good. I want to make my dashboard background as shiny with black color. dashboard.component.css #bgcolor…
Bhargavi gottam
  • 93
  • 1
  • 11
1
vote
0 answers

ScrollY is not working with overflow:auto

I'm using overflow:auto is my code and scrollY is not working with it. Can I use scrollY with overflow:auto simultaneously? Because I do want my parent div to cover all overflowing blocks, besides I also want to control scrollY. Is there a way that…
Knowledge Seeker
  • 526
  • 7
  • 25
1
vote
1 answer

CSS with .htc behavior file and virtual subdomain

I'm interested in using border-radius.htc or css3pie.htc in my stylesheet to enable newer CSS3 abilities in older versions of Internet Explorer. Unfortunately, MSIE requires that the .htc behavior file must be in the same domain as the HTML page…
Craig
  • 325
  • 1
  • 4
  • 17
1
vote
3 answers

Stylesheets compatible with IE 9

I have gotten accustomed to stylesheets that have separate rules for IE and non-IE browsers. For example, I have been using CSS3 Pie to generate rounded corners and gradients in IE. The issue is that IE 9 supports rounded corners and gradients, and…
Christophe
  • 27,383
  • 28
  • 97
  • 140
1
vote
1 answer

CSS Drop-down Menu using CSS3 and CSS3PIE

I am a newbie in web development. I made a CSS drop-down menu using CSS3 and CSS3PIE (css3pie.com), but the drop-down doesn't work in IE6 and Firefox. Usually this technique works in both browsers, without using CSS3 and PIE. Does PIE have problems…
Bayu
  • 437
  • 2
  • 10
  • 19
1
vote
1 answer

IE8 css3 border radius with x and y attributes

Does anyone know of a way to do the following in IE8? -moz-border-radius-bottomleft: 70% 100%; CSS3PIE only supports the simple border radius it seems, as well as most of the other IE css3 plug-ins.
Craig
  • 117
  • 1
  • 7
1
vote
1 answer

How do I get PIE (CSS3 for IE) working?

I am lost at using PIE for IE ... http://jsfiddle.net/XBzvL/ div { background: red; color: #fff; border-radius: 10px; behaviour: url("http://jiewmeng1.kodingen.com/playground/PIE.htc"); } why doesn't it work?
JM at Work
  • 2,417
  • 7
  • 33
  • 46
1
vote
3 answers

How can I find the wordpress theme name from live website?

I visited a website and found that the site was developed by Wordpress. But I don't know how to find the theme name that was used to develop that site. How can I find theme theme name from any live site. I am searching this theme name of this site…
1
vote
2 answers

CSS3PIE: Internet Explorer 6 doesn't download PIE.htc

I'm using the very impressive CSS3PIE (http://css3pie.com) library to add support for CSS3 styles in IE6-8. It works fine in versions 7 and 8 and took a lot of pain out of the process. However, in IE6 no CSS3 styles are shown at all. In fact,…
Jonas
  • 970
  • 1
  • 8
  • 17
1
vote
1 answer

Pie loader 2 progress colors, css, html, javascript

I almost finished timeout timer using ReactJS. It should look like a pie loader and I need at the last 30% of progress to change color from green to yellow. As a template for timer I took http://jsfiddle.net/Aw5Rf/7/ this one.
Anthony
  • 1,850
  • 2
  • 15
  • 15
1
vote
3 answers

leaflet L.control.attribution

Thank you for offering your help here. I have built a MapBox application. I wanted to add a copyright prior to MapBox's copyright logo. I used the L.control.attribution as: varName = L.control.attribution({prefix: 'some text'}).addTo(map); I used…
Ahmad Aburizaiza
  • 31
  • 1
  • 1
  • 2
1
vote
2 answers

CSS3 PIE background color transparency

I am using CSS3 PIE for adding CSS3 Rules to IE. http://css3pie.com/ It's great but I have a little problem now m using a semi transparent image for the background and PIE.htc automatically adds a gray background. "background-color:Transparent;" is…
Khawar
  • 23
  • 2
  • 7