Salve a tutti ho il seguente problema da risolvere:

Se provo a validare (validatore) questo codice
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/frameset.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">

<head>
<title>Black Jack's fun site</title>
<link rel="stylesheet" type="text/css" href="stile.css" />
</head>

<frameset rows="150,*" cols="200,*" border="0">
	<frame name = "icon" src = "icon.html" scrolling="no" frameborder="0"></frame>
	<frame name = "menuAlto" src = "menuAlto.html" scrolling= "no" frameborder="0"></frame>
	<frame name = "menuSx" src = "menuSx.html" scrolling= "no" frameborder="0"></frame>
	<frame name = "page" src = "page.html" scrolling= "yes" frameborder="0"></frame>
</frameset>

</html>
ricevo il seguente errore:

Error Line 10 column 43: there is no attribute "border".

Ma a me quell'attributo "border" server per eliminare il bordo del frame applicato alla pagina!

C'è modo di settare l'attributo "border" a "0" tramite un foglio CSS? Grazie.