Eston intentando valida mi web con la extencion de Firefox HTML Validator y a pesar de que no tiene errores me muestra varias advertensias que no logro solucionar.
Primero: tengo un div con un flash con este codigo:
<div class="flashrotator"><strong>
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','486','height','250','src','rotor_flash','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','wmode','transparent','movie','rotor_flash' ); //end AC code
</script>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="486" height="250">
<param name="movie" value="rotor_flash.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="rotor_flash.swf" width="486" height="250" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object>
</noscript>
</strong></div>
Y la extencion me dice:
The following tag is not a standard HTML tag. For most tags, the reason is that there is other ways to achieve the same result with standard tags or with cascaded style sheet.
Example:
Good <nobr>there is no wrapping here</nobr>
Good <table><tr><td nowrap>there is no wrapping here</td></tr></table>
<span style="white-space: nowrap;">there is no wrapping here</span>
<NOBR> is not approved by the W3C; <NOBR> turns off wordwrapping between the start and end NOBR tag. There are several ways to replace a NOBR by standard tag : - You can use the nowrap attribute of the TR and TD tag in a table. In that case, the <BR> element to force line breaks where desired. - The best solution is to use a cascaded style sheet with the attribute: "white-space: nowrap;".
Solution:
Replace the tag with the equivalent in standard HTML.
References:
* http://www.w3.org/TR/CSS1#white-space
Que debo hacer ya que Dreamweaver me saca la misma adevertencia
Gracias