0
我有圖案的背景圖像(150 x 150)這是重複的,我希望它只能跨越我的div容器的一半。可能嗎?怎麼會這樣做呢?背景圖像(圖案)重複只有一半div
我的HTML到目前爲止
<section id="hero>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1>title here</h1>
<h2>Lorem ipsum</h2>
</div>
</div>
</div>
</section>
和我(一個或多個)CSS
#hero {
height: 100vh;
background-image: url("../assets/pattern.png");
background-repeat: repeat;
}