Hello,
I am building the master page as follows but not sure why the intellisense does not accept cellspacing or cellpading for <table>. on hovering over the line it says: validation (xhtml5) : attribute cellspacing is not a valid attribute for element 'table'
Any suggestions please? thanks
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="test.master.cs" Inherits="test" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>test</title> </head> <body> <form id="form1" runat="server"> <table cellspacing="0" cellpadding="0" width="770" border="0">
</table>
Go to the complete details ...