escribo mis CSS bien, y me presenta error de td con 46px. alguien que me ayude a darle solución a este problema.
“Parece que cada td tiene 46px de alto en vez de 50px de alto.”
escribo mis CSS bien, y me presenta error de td con 46px. alguien que me ayude a darle solución a este problema.
“Parece que cada td tiene 46px de alto en vez de 50px de alto.”
Check your zoom and make sure it’s on 100%
Or switch browsers
ya lo hice y no me deja continuar :llorar:
Hmm copy and paste in your HTML and CSS code… And the lesson URL
Mira aqui te lo dejo…
HTML
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<table>
<thead>
<th colspan="3">¡Nueve bloques!</th>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</body>
CSS
td {
height: 50px;
border: 1px dashed blue;
}
table {
border: 1px solid black;
}
Use height: 54px;
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.