2014-08-27 66 views
1

enter image description here我希望把我的一些應用程序的面板

我有一個應用程序,我要實現滑動面板和麪板我已經implemnted該面板上添加圖片,但我不能添加圖片到我在圖片中提到的位置。這是我沒有CSS和JS的代碼。

<body> 
<div id="wrapper"> 
    <div id="content"> 
     <div class="demo"> 
     <h2 align="center">DASHBOARD</h2> 

    <div> <h3 class="expand"><p>STPCODE NOT REGISTERED</p></h3>   
     <div class="collapse"> 
      <p>List of unregistered user are here</p> 
     </div>   

     </div>  
     <h3 class="expand"><p>TOTAL NUMBER OF REGISTERED USER IN DRAFT MODE</p></h3> 
     <div class="collapse"> 
      <p>List of user in draft mode are here</p> 
     </div> 
     <h3 class="expand"><p>TOTAL NUMBER OF PAYMENT INITIATED</p></h3> 
     <div class="collapse"> 
      <p>Total number of users who have their payment initiated</p> 
     </div> 
     <h3 class="expand"><p>TOTAL NUMBER OF PAYMENT RECIEVED</p></h3> 
     <div class="collapse"> 
      <p>Total number of users who have their payment Recived</p> 
     </div> 
     <h3 class="expand"><p>TOTAL NUMBER OF PAYMENT DISAPPROVED</p></h3> 
     <div class="collapse"> 
      <p>Total number of users who have their payment disapproved</p> 
     </div> 
     </div>   
    </div> 
</div> 

我想在我的picture.plese幫助添加位置添加圖片

回答

0

伊莫你應該問這樣的東西基本前進行更多的reasearch的,但無論如何在這裏你有這是一個例子:http://jsfiddle.net/8knmd7pd/

這只是基本的使用:

background-image: url(); 

在jsfiddle中,圖像將定位在您的「h3」的右側...如果您想給出特定位置,請使用px,例如:

background-position: center 200px; 
相關問題