#CSS border-image-slice プロパティは、境界線画像をスライスするために使用されます。
次のコードを実行して、境界線 - image-slice プロパティ -
ライブ デモ
<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: 50; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>
以上がCSS ボーダー画像のスライスの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。