背景画像(同じもの)を2つのdivタグに適用しようとしています:
.abc { background: url('images/autogen.png') no-repeat 0px -133px; width: 256px; height: 256px; };
.def { background: url('images/autogen.png') no-repeat 0px -0px; width: 128px; height: 128px; };
HTML:
<html><head><meta charset="utf8"><link href='main.css' rel='stylesheet' type='text/css'' media='all' /></head><body>
<div class="def">def</div>
<div class="abc">abc</div></body></html>
しかし、1つだけが表示されました。.abcの定義の前に.def定義を置くと、.defが表示され、.abcには背景がありません。