跨浏览器圆角(无图像)

发布于 2024-08-31 19:34:37 字数 112 浏览 1 评论 0原文

将 PSD 转换为 HTML 甚至 HTML5 和 CSS 时,圆角并使这些角在所有浏览器(尤其是 Internet Explorer)中保持一致有多困难?

假设角落是用代码而不是图像来圆化的。

When converting PSD's into HTML or even HTML5 and CSS, how much more difficult is it to round the corners and make those corners consistent across all browsers, especially Internet Explorer?

Assuming the corners were rounded with code, not images.

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

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

发布评论

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

评论(4

眼眸里的那抹悲凉 2024-09-07 19:34:37

如果您需要 JavaScript 解决方案,可以查看 Corner。它是跨平台的。

You can check out Corner if you want a JavaScript solution. It's cross platform.

黎夕旧梦 2024-09-07 19:34:37

您已经接受,但 CSS3 PIE 您可以只使用 border-radius 属性(以及IE3 中的渐变、阴影和其他有趣的 CSS3 功能)。我认为这是解决问题的更干净的方法之一。

You already accepted but CSS3 PIE you can just use the border-radius property (along with gradients, shadows, and other fun CSS3 features) in IE3. I think it's one of the cleaner ways to approach the problem.

度的依靠╰つ 2024-09-07 19:34:37

对于不使用 Javascript 的跨浏览器圆角,有一些解决方法:

所有浏览器中的 CSS 圆角
圆角实验
CSS 中的圆角(跨浏览器实现)

使用 CSS3 进行 webkit &基于 gecko 的浏览器、Opera 的 SVG 和 IE 的 VML。
另外,如果您想通过 Javascript 使用众所周知的 jQuery Corners

There are a few workarounds for cross browser rounded corners not using Javascript:

CSS Rounded Corners In All Browsers
An Experiment in Rounded Corners
Rounded corners in CSS (cross browser implementations)

Using CSS3 for webkit & gecko based browsers, SVG for Opera and VML for IE.
Also you may want to use the well-known jQuery Corners if you want it via Javascript.

情归归情 2024-09-07 19:34:37

有了 CS3 border-radius 属性,这并不难。有些浏览器有自己的实现,例如 firefox 的 -moz-border-radius 以及 safari 和 chrome 的 -webkit-border-radius

但IE仍然不支持border-radius,所以很难让它跨浏览器工作。

With the CS3 border-radius property, it's not hard. Some browsers have their own implmentation, like -moz-border-radius for firefox and -webkit-border-radius for safari and chrome.

But IE still does not support the border-radius, so it's hard to get make it work cross-browser.

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