CSS の background-repeat プロパティは、背景画像を並べて表示する方法を設定するために使用されます。 background-repeat:repeat-x は、水平方向の位置のみで背景画像を繰り返すことを意味し、background-repeat:repeat-y は、垂直方向の位置のみで背景画像を繰り返すことを意味します。
#CSS 背景繰り返し属性
機能: 背景画像を繰り返すかどうか、どのように繰り返すかを設定します。 基本構文: background-repeat:repeat|repeat-x|repeat-y|no-repeat;repeat: デフォルト値、背景画像は垂直になります。水平方向に繰り返します。 repeat-x: 背景画像のみを水平方向に繰り返します。 repeat-y: 垂直方向の位置のみで背景画像が繰り返されます。 no-repeat: 背景画像は繰り返されません。 説明:background-repeat 属性は、画像のタイリング モードを定義します。元の画像から開始して繰り返します。この画像は、background-image で定義され、background-position の値に従って配置されます。#CSS 背景リピート属性の使用例<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
.demo1{
width: 400px;
height: 150px;
border: 1px solid red;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat;
}
.demo2{
width: 400px;
height: 100px;
border: 1px solid red;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:no-repeat;
}
.demo3{
width: 400px;
height: 150px;
border: 1px solid red;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat-x;
}
.demo4{
width: 400px;
height: 400px;
border: 1px solid red;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat-y;
}
</style>
</head>
<body>
<h3>repeat设置背景图片向垂直和水平方向重复</h3>
<div class="demo1"></div>
<h3>no-repeat设置背景图片不重复</h3>
<div class="demo2"></div>
<h3>repeat-x设置背景图片向水平方向重复</h3>
<div class="demo3"></div>
<h3>repeat-y设置背景图片向垂直方向重复</h3>
<div class="demo4"></div>
</body>
</html>
##以上がこの記事の全内容です、皆様の学習のお役に立てれば幸いです。
以上が背景リピート属性の使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。