CSS:如何添加带边框且无图像的圆角?

发布于 2024-07-27 12:13:45 字数 106 浏览 4 评论 0原文

有没有类似的东西可以在IE上运行? 没有图像且有边框?

http://www.css3.info/preview/rounded-border/

Is there something like this that can work with IE? No images and with borders?

http://www.css3.info/preview/rounded-border/

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

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

发布评论

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

评论(4

饮惑 2024-08-03 12:13:45

我还没有尝试过,但你可以看看这个

Nifty Corners Cube: rounded corners without images - 
URL is http://www.html.it/articoli/niftycube/index.html

或者你可以尝试

JQuery Corners - 
http://www.atblabs.com/jquery.corners.html

示例用法 -

<div style="background-color:#acc; padding:10px" class="rounded">
  Example with different x and y sizes.
</div>
<script>$(document).ready( function(){
  $('.rounded').corners("30px 10px");
});</script>

Works with:

    * iPhone
    * Chrome
    * Firefox
    * Safari 2+
    * Opera 9.0+
    * Internet Explorer 6+
    * and probably more...

I haven't tried but you can have a look on this

Nifty Corners Cube: rounded corners without images - 
URL is http://www.html.it/articoli/niftycube/index.html

OR you can try

JQuery Corners - 
http://www.atblabs.com/jquery.corners.html

Example usage -

<div style="background-color:#acc; padding:10px" class="rounded">
  Example with different x and y sizes.
</div>
<script>$(document).ready( function(){
  $('.rounded').corners("30px 10px");
});</script>

Works with:

    * iPhone
    * Chrome
    * Firefox
    * Safari 2+
    * Opera 9.0+
    * Internet Explorer 6+
    * and probably more...
因为看清所以看轻 2024-08-03 12:13:45

使用 CSS3,您无需使用任何图像即可实现此目的。

但许多浏览器不支持。

With CSS3 you can achieve this without using any images.

But isn't supported in many browsers.

花心好男孩 2024-08-03 12:13:45

尝试 Nifty Corners Cube,但它不允许你有边框颜色与内部背景颜色不同。 您需要找到一种解决方法(漂亮的角落里的漂亮角落)。 您还可以查看 jQueryUI 的 themeroller。 它使用图像,但您可以使用它来设计自己的主题,您所要做的就是下载包含脚本、样式和图像的整个包。 查看可以创建突出显示/错误的部分。

这是另一个漂亮角内的漂亮角立方体的示例。 只需查看来源即可。 漂亮的角落立方体示例

Try Nifty Corners Cube, but it doesn't allow you to have a border color different form the inner background color. You will need to find a workaround (nifty corner inside a nifty corner). You can also checkout jQueryUI's themeroller. It uses images but you can use it to design your own theme and all you have to do is download the whole package containing the scripts, styles and images. Check out the part where you can create Highlight / Error.

Here's a sample of the nifty corners cube inside another nifty corner. Just view the source. Nifty Corners Cube sample

半衬遮猫 2024-08-03 12:13:45

试试这个:

http://www.cssplay.co.uk/boxes/curves。 html

此方法不使用图像,不使用 javascript,而是使用一点额外的 HTML 和 CSS。

基本上,该方法基于使用项目符号(•)。 项目符号被赋予所需的颜色并放置在盒子的四个角上。 盒子是相对定位的,子弹是绝对定位的。 也就是说,它们绝对相对于父框定位。

Try this one:

http://www.cssplay.co.uk/boxes/curves.html

This method uses no images, no javascript, but a little bit of extra HTML with CSS.

Basicly, this method is based on the use bullets (•). Bullets are given the desired color and placed in the four corners of the box. The box is relatively positioned, the bullets are positioned absolutely. That is they are positioned absolutely relative to the parent box.

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