IE 的 CSS 渐变高度?

发布于 2024-09-10 16:56:56 字数 408 浏览 10 评论 0原文

在 CSS 渐变的 webkit 和 moz 供应商特定属性中,您可以指定渐变的高度。 IE 有类似的东西吗?

例如:

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aaaaaa', endColorstr='#ffffff'); /* IE */
background: -webkit-gradient(linear, left top, left 3, from(#aaaaaa), to(#ffffff)); /* webkit */
background: -moz-linear-gradient(top,  #aaaaaa,  #ffffff 3px); /* firefox */

如何在IE中指定3px高的渐变?

In the webkit and moz vendor specific properties for CSS gradients, you can specify the height of the gradient. Is there something similar for IE?

For example:

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aaaaaa', endColorstr='#ffffff'); /* IE */
background: -webkit-gradient(linear, left top, left 3, from(#aaaaaa), to(#ffffff)); /* webkit */
background: -moz-linear-gradient(top,  #aaaaaa,  #ffffff 3px); /* firefox */

How can I specify a 3px high gradient in IE?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶气 2024-09-17 16:56:56

这是一个 hack,但您可以创建一个定义高度为 3px 的重复 div 并对其应用 IE 过滤器。

或者,您可以避免 IE 代码膨胀,并接受 IE 将具有与功能更强大的浏览器(包括方角)不同的美感。

It's a hack, but you could create a duplicate div with a defined height of 3px and apply the IE filter to that.

Or you could avoid the IE code bloat, and accept that IE will have a different aesthetic than more capable browsers (square corners included).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文