#teste{
  width: 600px;
  height: 600px;
  background-image: url(fundodetela.jpg);
}
body{
  background-image: url(fundodetela.jpg);
}
#teste{
  width: 400px;
  height: 100px;
  background-image: url(fundodetela.jpg);
  background-repeat: repeat;
}
#teste1{
  width: 400px;
  height: 150px;
  background-image: url(fundodetela.jpg);
  background-repeat: repeat-x;
}
#teste2{
  width: 400px;
  height: 150px;
  background-image: url(fundodetela.jpg);
  background-repeat: no-repeat;
}
#teste3{
  width: 400px;
  height: 100px;
  background-image: url(fundodetela.jpg);
  background-repeat: repeat-y;
}