Ciao, sto studiando una guida sui css on line, questa guida è molto ricca sulle varie operazioni che si possono fare con i css, però non sono riuscito a capire come richiamare le funzioni create con i css su una pagina html esempio:

test.css
codice:
img { 
background-image: url(memo2.jpg); 
background-repeat: no-repeat; 
background-attachment: scroll; 
background-position: +100px 100px;}

test.html
codice:
<html> 
  <head> 
   <title>Inserire i fogli di stile in un documento</title> 
     <style> 
    @import url(test.css); 
     </style> 
  </head> 
<body> 
bla bla bla 
</body> 
</html>
Vorrei sapere come richiamare la funzione dichiarata nel documento css "img" nel documento html?
Sembra che così non funzioni.

Ciao