background-image: url(path-to-file/img.jpg);
background-repeat:no-repeat;
background-position: center center;
작동합니다.
그렇지 않다면 div이미지 z-index를 만들어 배경으로 사용 하는 것이 어떻습니까? 이것은 몸의 배경 이미지보다 중앙에 놓기가 훨씬 쉽습니다.
그 이외의 시도 :
background-position: 0 100px;/*use a pixel value that will center it*/또는 몸 min-height을 100 %로 설정하면 50 %를 사용할 수 있다고 생각합니다 .
body{
background-repeat:no-repeat;
background-position: center center;
background-image:url(../images/images2.jpg);
color:#FFF;
font-family:Arial, Helvetica, sans-serif;
min-height:100%;
}