CSS:如何添加带边框且无图像的圆角?
有没有类似的东西可以在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我还没有尝试过,但你可以看看这个
或者你可以尝试
示例用法 -
I haven't tried but you can have a look on this
OR you can try
Example usage -
使用 CSS3,您无需使用任何图像即可实现此目的。
但许多浏览器不支持。
With CSS3 you can achieve this without using any images.
But isn't supported in many browsers.
尝试 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
试试这个:
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.