たとえば、html は次のとおりです。
<td class=topleft width=10 height=10></td>
CSSは次のとおりです。
td.topleft{
border:0px;
width: 100px;
background-image: url(images/topleft.png);
background-repeat:no-repeat;
}
ディレクトリ構造 (デスクトップ上の site というフォルダから始まる)
site.html
スタイル.css
/images/topleft.png
注: それ以外の場合、スタイルは css ファイルから読み込まれます。
ファイルで絶対パスを試しました:
background-image:url(file:///C:/Users/user/Desktop/site/images/topleft.png);
その URL をブラウザに直接入力すると、画像に到達して表示されます。