使用 CSS 设置圆角、重复和拉伸的边框图像
border-image-repeat 属性可用于设置圆角、重复和拉伸的边框图像,并使用 CSS。
示例
你可以尝试运行以下代码,以实现 border-image-repeat 属性
<html> <head> <style> #borderimg1 { border: 15px solid transparent; padding: 15px; border-image-source: url(https://tutorialspoint.com/css/images/border.png); border-image-repeat: round; border-image-slice: 40; border-image-width: 20px; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>
广告