I want to create two tables on the same page only one will have borders and another will not. I have one already created in CSS but now I can not create another one.
<table border="0" width="500px" height="1000px">
<tr >
<td>
<iframe src=".PDF" ></iframe>
</td>
</tr>
<tr>
<td>
<iframe src=".PDF" ></iframe>
</td>
</tr>
</table></center>
This table looks just like the other one. How do I get around this?
CSS table 1 (Constructed):
table {
width: 100%;
}
table.default {
width: 100%;
}
table.default tbody tr {
border-bottom: solid 1px #e0e0e0;
}
table.default td {
padding: 0.5em 1em 0.5em 1em;
}
table.default th {
font-weight: 600;
padding: 0.5em 1em 0.5em 1em;
text-align: left;
}
table.default thead {
background-color: #555555;
background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
color: #fff;
}
PS: Now I want to create a new CSS for the table I placed above