Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm having a hard time trying to get the Democratic, Republican, and Independent
align correctly to the numbers Democrat to 70%, Republican to 35%, and Independent to 55%. I also cant align "Todays opinion Pool...." to align with Favor. I'm having a hard time can someone explain to me what I'm doing wrong and how to fix it?






<html>
<head>
<title>Border</title>
</head>
<body>

</body>
</html>

What I have tried:

Tried rewritting the code and change rowspan and colspan
Today's Opinion Poll QuestionPolitical party
DemocratRepublicanIndependent
Do you favor or oppose increasing the minimum wage?"Favor70%35%55%
Oppose25%60%30%
Unsure5%5%15%
Posted
Updated 19-Oct-16 19:41pm
Comments
Karthik_Mahalingam 20-Oct-16 2:49am    
post a screenshot of it

1 solution

Is this something you are looking for
HTML
<table border="1">
<tbody>
<tr>
<td></td>
<td colspan="4">Political party</td>
</tr>
<tr>
<td></td>
<td >Today's Opinion Poll Question</td>
<td>Democrat</td>
<td>Republican</td>
<td>Independent</td>
</tr><tr>
</tr><tr>
<td rowspan="3">Do you favor or oppose increasing the minimum wage?"</td>
<td>Favor</td>
<td>70%</td>
<td>35%</td>
<td>55%</td>
</tr>
<tr>
<td>Oppose</td>
<td>25%</td>
<td>60%</td>
<td>30%</td>
</tr>
<tr>
<td>Unsure</td>
<td>5%</td>
<td>5%</td>
<td>15%</td>
</tr>
</tbody>
</table>


Political party
Today's Opinion Poll QuestionDemocratRepublicanIndependent
Do you favor or oppose increasing the minimum wage?"Favor70%35%55%
Oppose25%60%30%
Unsure5%5%15%
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900