私は次のCSSコードを持っています
.imgf{
background: url(/thatscooking/FotoTC/FotoTC/ALWIN01.JPG) no-repeat center center ;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
これは正常に機能するようになりました。php で img を変更する必要があるため、インライン CSS を使用しようとしています。
<div style="background: url(/thatscooking/FotoTC/FotoTC/ALWIN01.JPG) no-repeat center center"
style="background-size: cover"
style="-webkit-background-size: cover"
style="-moz-background-size: cover"
style="-o-background-size: cover"
class="imgf ">
<div id="naamb"><p>Album Naam</p></div></div>
背景サイズのカバーが機能せず、ファイアバグに表示されないのは今だけです
インラインCSSを間違って使用していますか?