background top contain

by dekkard

HTML

<body>
  <!-- upper section -->
   <div class="upper">
    This is the upper section
	</div>
<!--end upper section-->

</body>

CSS

body{
        background: url(http://uupload.ir/files/y7l4_bg.png) repeat-x;
        margin: 0;
        padding: 0;
    }
    
    
    .upper{
        background: url(http://uupload.ir/files/ur8m_cloud.png);
        height:600px;
        background-repeat:no-repeat;
        background-position: center top;
        background-size: contain;
    }