Could someone please help me with changing the height of table cells in MVC using Dreamweaver? I have already created the table with the following structure, but I am struggling to adjust the cell height. Any advice or tutorials would be greatly appreciated. Thank you!
HTML
<table class="table">
<tr>
<th>
First Name
</th>
<th>
Last Name
</th>
<th>
</th>
<th>Edit</th>
</tr>
<tr>
<td>
jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj
</td>
<td>
jgfjjjjjjjjjjjjjjjjjjj
</td>
<td>
fgjfjjjjjjjjjjjjjjjjj
</td>
<td>
gjj jjjjjjjjjjjjjjjjjjjjjjjjjj
</td>
</tr>
</table>
css
@media
only screen and (max-width: 560px),
(min-device-width: 768px) and (max-device-width: 1024px) {
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
display: block; width:250px;
}
/* Hide table headers (but not display: none;, for accessibility) */
thead tr {
position: absolute;
top: -9999px;
left:-9999px;
}
tr { margin-left:4px; }
/*
Label the data
*/
td:nth-of-type(1):before { content: ""; }
td:nth-of-type(2):before { content: ""; }
td:nth-of-type(3):before { content: ""; }
td:nth-of-type(4):before { content: ""; }
td:nth-of-type(5):before { content: ""; }
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
body {
padding: 0;
margin: 0;
width: 320px; }
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
body {
width: 495px;
}
}tr:nth-of-type(odd) {
background:#eee;
}
th {
background: #333;
color: white;
font-weight: bold;
}
th {
padding: 5px; height:10px;
border: 1px solid #ccc;
text-align: left;
}
td {
height:5px;
border: 1px solid #ccc;
text-align: left;
}
Edit { color:black;}