[jQuery] CSS background-image doesn't work with jQ dynamic content?
Hello all!
i've created a jQ table class which let me to create a table like this
in my html page:
<html>
<head>
<link rel="stylesheet" type="text/css" href="./css/table_bg.css"/>
</head>
<body>
<!-- CODE STARTS FROM HERE -->
<table>
<thead>
<tr>
<th class="column">column one</th>
<th class="column">column two</th>
<th class="column">column three</th>
<th class="column">column four</th>
</tr>
</thead>
<tbody>
<tr id="row_1">
<td class="cell">content one</td>
<td class="cell">content two</td>
<td class="cell">content three</td>
<td class="cell">content four</td>
</tr>
<tr id="row_2">
<td class="cell">content one</td>
<td class="cell">content two</td>
<td class="cell">content three</td>
<td class="cell">content four</td>
</tr>
<tr id="row_3">
<td class="cell">content one</td>
<td class="cell">content two</td>
<td class="cell">content three</td>
<td class="cell">content four</td>
</tr>
</tbody>
</table>
<!-- CODE ENDS HERE -->
</body>
the table was created perfectly and exactly as i wish.
the problem starts if i try to use background-image css for the
classes .column and .cell throught a css file, it won't work. if i do
it with jQ it works perfectly but i wish to do it with the .css file.
some one knows if this issue is solvable?
thank you
vittorio