I have this HTML code:
<td align="center">
and I'm getting this error in Visual Studio 2008 from ReSharper:
"Element '
align
' is obsolete or nonstandard"
What is the replacement of this code to make it standard?
You should use text-align
in CSS rather than using the obsolete html styling attributes.
td{
text-align:center;
}