Ciao a tutti non capisco il perchè non riesco ad applicare un patter alle mie pagine da css esterno con il segunte codice
body{
background-image: url("pattern/pattern-5a.png");
background-attachment: fixed;
background-color: #000000;
background-repeat: repeat;
}

I browser lo riconoscono solo con lo style nella pagina o in linea
<style type="text/css">
body{
background-image: url("pattern/pattern-5a.png");
background-attachment: fixed;
background-color: #000000;
background-repeat: repeat;
}
</style>



Qualche consiglio?