- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个要显示为彩色小圆圈的 div。我使用 border-radius 属性添加了圆 Angular ,这当然可以在 Firefox、Chrome 甚至 IE9 中完美运行,但不能在早期版本的 IE 中运行。我正在尝试使用 CSSPIE在早期版本的 IE 中呈现圆 Angular 。我下载了 PIE.htc 并将其保存在我的 css 文件夹中。
这是我的 CSS 的要点:
width: 25px;
height: 25px;
background-color: red;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
behavior: url(/PIE.htc);
但是,div 在 IE7 和 8 中仍显示为红色正方形而不是圆形。我做错了什么?
最佳答案
替换:
behavior: url(/PIE.htc);
与:
behavior: url("PIE.htc");
编辑
来自docs :
IE interprets the URL for the behavior property relative to the source HTML document, rather than relative to the CSS file like every other CSS property. This makes invoking the PIE behavior inconvenient, because the URL has to either be:
1. Absolute from the domain root — this makes the CSS not easily moveable between directories — or,
2. Relative to the HTML document — this makes the CSS not easily reusable between different HTML files.
将路径更改为相对于 HTML 文件而不是相对于 css 文件。
关于internet-explorer - 为什么我不能让 csspie 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14089937/
我有一个要显示为彩色小圆圈的 div。我使用 border-radius 属性添加了圆 Angular ,这当然可以在 Firefox、Chrome 甚至 IE9 中完美运行,但不能在早期版本的 IE
我们在使用下面的代码时遇到了问题。它只是一个带有圆 Angular 和渐变的基本框(我们将 CSSPie 应用于它)。我们注意到在所有 IE 中,由于渐变(饼图不起作用),我们无法在 IE 中保留该元
我已经创建了一个选项卡和选项卡内容动画。单击选项卡时,相应的选项卡内容显示在下方,其他选项卡隐藏,非常简单且工作正常。我遇到的问题是 border-radius 在 IE7 和 8 中的呈现。我将 c
我是一名优秀的程序员,十分优秀!