重複の可能性:
PHPでHTML + CSSをPDFに変換しますか?
これを適切に達成する方法を見つけることができないようです。私は2つのコンテナを持っています。1つのコンテナで、上半分全体を水平方向に引き継ぐ背景画像を使用し、次に2番目のコンテナを使用して赤に色付けします。これにより、下半分が水平方向に引き継がれます。
私はこれを試しました:
HTML:
<div class="container1">
Some text and other divs go here. This is where the background will be an image.
</div>
<div class="container2">
Some text will also here along with divs. This is where I want to use the red background.
</div>
CSS:
.container1 {
background-image: url('img.png');
width:100%;
}
.container2 {
width: 100%;
color: #990000;
}
問題は、画像コンテナの場合、上下左右に空白が残っていることです。
どうすればこれを解決できますか?