CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSを使用して要素の境界として画像を設定します


CSS border-imageプロパティは、一部の要素に画像の境界線を追加するために使用されます。次のコードを実行して、画像を要素の境界線として設定してみてください。

<html>
   <head>
      <style>
         #borderimg1 {
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 10px;
         }
         #borderimg2 {
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 20px;
         }
         #borderimg3 {
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 30px;
         }
      </style>
   </head>
   <body>
      <p id = "borderimg1">This is image border example.</p>
      <p id = "borderimg2">This is image border example.</p>
      <p id = "borderimg3">This is image border example.</p>
   </body>
</html>

  1. CSSで画像にボタンを設定

    次のコードを実行して、画像にボタンを設定してみてください。 例 <!DOCTYPE html> <html>    <head>       <style>          .box {             position: relative;             width: 100%;    

  2. CSSを使用して画像に境界線を追加するにはどうすればよいですか?

    以下は、CSSを使用して画像に境界線を追加するコードです- 例 <!DOCTYPE html> <html> <head> <style> img {    border: 8px solid rgb(0, 238, 255);    width: 400px;    height: 400px; } </style> </head> <body> <h1>Border Around Image Example</h1> <