Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 이미지 경로 설정

<시간/>

border-image-source 속성은 CSS에서 이미지 경로를 설정하는 데 사용됩니다. 다음 코드를 실행하여 이미지 경로를 설정할 수 있습니다 -

예시

<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;
         }
      </style>
   </head>
   
   <body>
      <p id = "borderimg1">This is image border example.</p>
   </body>
</html>