Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Create the second row problem unsable to solve .html project calculator

<!DOCTYPE html>
<html>

<head>
<title></title>
</head>
<body>
<table border="1px" width="75%">
<tr height="50px">
<td><input type="text" style="width:95%;height:50px" /></td>
</tr>

<tr height="50px">
<td colspan="4"> </td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
by

1 Answer

sam5epi0l
You should colspan attribute and input element at right place as follows:


<!-- All the best -->
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<table border="1px" width="75%">
<tr height="50px">
<td colspan="4">
<input type="text" style="width: 95%; height: 50px;">
</td>
</tr>
<tr height="50px">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>

Login / Signup to Answer the Question.