css設定圖片拉伸不重複的方法:首先透過「background: url("../../../static/imagic/sy.jpg")」設定圖片路徑;然後透過「 no-repeat”屬性設定圖片不重複即可。
本文操作環境:windows7系統、HTML5&&CSS3版,DELL G3電腦
css設定背景圖片拉伸全螢幕不重複
話不多說直接上圖我們只給了寬和高100%就會出現這種狀況
<template> <div class="hello"></div> </template> <script> export default { name: "HelloWorld", data() { return {}; } }; </script>
<style scoped> .hello { background: url("../../../static/imagic/sy.jpg") no-repeat; height: 100%; width: 100%; background-size: cover;//全屏展示 } </style>
background: url("../../../static/imagic/sy.jpg") ——圖片路徑的位置;
no-repeat——圖片不重複;
center 0px——center是距離頁面左邊的定位,0px是距離頁面上面的定位;
background-position: center 0——就是圖片的定位,同上;
background-size: cover;——把背景圖像擴展至足夠大,以使背景圖像完全覆蓋背景區域。背景圖像的某些部分也許無法顯示在背景定位區域中;
min-height: 100vh;——視窗的高度,「視區」所指為瀏覽器內部的可視區域大小,即window.innerWidth/ window.innerHeight大小。
推薦學習:《css影片教學》
以上是css怎麼設定圖片拉伸不重複的詳細內容。更多資訊請關注PHP中文網其他相關文章!