Web ページに表があり、背景画像を追加したいと考えています。テーブルの背景を白のままにしたいのですが、テーブルの周りには背景画像が必要です。の背景画像を変更する<head>
と、白いテーブルの背景が画像に変わりますが、これは私が望んでいるものではありません。
コード:
<link href="css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
background-image: url('file:///....Images/background.JPG');
background-repeat:repeat;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
</style>
<link href="css/bootstrap-responsive.css" rel="stylesheet">
正しい方法で行うにはどうすればよいですか?ところで、私は明らかにbootstrap/html/cssにまったく慣れていませんか?