Madhan Kumar
Madhan Kumar

Reputation: 13

Disable HTML error check in netbeans

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

Answers (2)

anand kulkarni
anand kulkarni

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

Dyrandz Famador
Dyrandz Famador

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 Tasks tab, click the filter button in the left,
  • Choose Edit

In the Task List Filter dialog:

  • Click New
  • Enter a value for Name (such as "No Script Messages"),
  • Uncheck the Scripting Language Tasks option
  • Click OK.

then close/open the Task window or Netbeans

Upvotes: 1

Related Questions