Well, my problem is that I added foundation rails to my project that is created in ruby on rails and I wanted to create a small table, but when creating this table it gives me a white background, what I want to do is that my table be transparent without any color background.
already try putting a class and assigning properties but it does not work, also add the style directly, delete cookies just in case but still does not change color, just change size.
.css file
.tabla {
width:80%;
height: 80%;
background-color:transparent;
}
.html.erb file
<table border="2" class="tabla">
<tr>
<td>Film Affinity</td>
<td><%= image_tag "film_affinity.png",:class=>"imagenPie"%></td>
</tr>
<tr>
<td>IMDB</td>
<td><%= image_tag "imdb.png",:class=>"imagenPie"%></td>
</tr>
<tr>
<td>Sensa Cine</td>
<td><%= image_tag "sensacine.png",:class=>"imagenPie"%></td>
</tr>
</table>