次のコードを試しました:
CSS:
.bg_left{
background-image: url(path/image.jpeg);
background-repeat: no-repeat;
background-position: left bottom;
background-color: #FF0000;
color:#FFFFFF;
height:150px;
}
table{width:100%;}
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 responsive website tutorial</title>
</head>
<body>
<table>
<tr class="bg_left">
<td>Helloo
</td>
<td>Logout</td>
</tr>
</table>
</body>
</html>
しかし、IE と Firefox では問題なく動作するのに、なぜ chrome では繰り返されるのでしょうか?