CSS border-image-repeat 속성은 테두리 이미지를 둥근 모서리, 반복 및 늘이기로 설정하는 데 사용됩니다.
다음 코드를 실행하여 border-image-repeat 속성을 구현할 수 있습니다. -
Live Demo
<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; border-image-width: 10px; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>
위 내용은 CSS 테두리 이미지 반복의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!