您好,登錄后才能下訂單哦!
這篇文章主要介紹css中的background-repeat屬性怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
CSSbackground-repeat屬性
作用:設置是否及如何重復背景圖像。
基本語法:
background-repeat:repeat|repeat-x|repeat-y|no-repeat;
repeat:默認值,背景圖像將向垂直和水平方向重復。
repeat-x:只有水平位置會重復背景圖像。
repeat-y:只有垂直位置會重復背景圖像。
no-repeat:設置背景圖片不會重復。
說明:background-repeat屬性定義了圖像的平鋪模式。從原圖像開始重復,原圖像由background-image定義,并根據background-position的值放置。
CSSbackground-repeat屬性的使用示例
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>菜鳥教程(runoob.com)</title>
<style>
.demo1{
width:400px;
height:150px;
border:1pxsolidred;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat;
}
.demo2{
width:400px;
height:100px;
border:1pxsolidred;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:no-repeat;
}
.demo3{
width:400px;
height:150px;
border:1pxsolidred;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat-x;
}
.demo4{
width:400px;
height:400px;
border:1pxsolidred;
background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png');
background-repeat:repeat-y;
}
</style>
</head>
<body>
<h4>repeat設置背景圖片向垂直和水平方向重復</h4>
<divclass="demo1"></div>
<h4>no-repeat設置背景圖片不重復</h4>
<divclass="demo2"></div>
<h4>repeat-x設置背景圖片向水平方向重復</h4>
<divclass="demo3"></div>
<h4>repeat-y設置背景圖片向垂直方向重復</h4>
<divclass="demo4"></div>
</body>
</html>
以上是“css中的background-repeat屬性怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。