Cita:
Iniciado por kenso me ayudaria mas si me pasaras el HTML osea el boton ? o donde sea que estes usando esa clase
Mira.. este es un codigo de ejemplo
Código HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Pruebas</title>
<link href="estilos/estilos.css" type="text/css" rel="stylesheet">
</head>
<body>
<table border="1" width="400">
<thead>
<th>Nombre</th>
<th>Edad</th>
<th>Telefono</th>
</thead>
<tbody>
<tr>
<td class="itemImparTabla">Juan Jose Avila Campos</td>
<td class="itemImparTabla">40</td>
<td class="itemImparTabla">768787686</td>
</tr>
<tr>
<td class="itemParTabla">Fernando Aguilar</td>
<td class="itemParTabla">56</td>
<td class="itemParTabla">757647640</td>
</tr>
<tr>
<td class="itemImparTabla">Juan Israel Hernandez</td>
<td class="itemImparTabla">23</td>
<td class="itemImparTabla">343943948</td>
</tr>
</tbody>
</table>
</body>
</html>