Reputation: 13
I am using netbeans 8.0. While working in html file it shows a error for some tags. Can anyone please help me to disable it?
Upvotes: 1
Views: 2193
Reputation: 156
use vertical-align while using valign as following
<table border="1" style="height:400px;">
<tr>
<td style="vertical-align:top;">Top Foo</td>
</tr>
<tr>
<td style="vertical-align:middle;">Middle Foo</td>
</tr>
<tr>
<td style="vertical-align:bottom;">Bottom Foo</td>
</tr>
</table>
Upvotes: 0
Reputation: 4525
click on the light bulb on the hint and you should be taken to the configuration screen to do that.
OR
In the Task List Filter dialog:
then close/open the Task window or Netbeans
Upvotes: 1