我需要將徽標20像的圖像重疊在響應滑塊中。徽標的圖像必須位於前方,並且響應滑塊必須返回。請觀看現場直播:http://www.pahari.com.np如何在響應滑塊中重疊圖像?
**HTML PART:**
<div id="top_banner"> <div id="logo"><img src="image/logo.jpg"> </div> </div>
<div id="slider_bg"> <?php include_once("slider.php"); ?> </div>
<div id="menu_bg"> </div>
<div id="content_bg"> <div id="content"> </div> </div>
**CSS PART:**
<style>
#top_banner{
width: 1000px;
height: 106px;
margin: auto;
}
#logo{
width: 362px;
background: url(images/logo.jpg) no-repeat;
height: 106px;
float: left;
}
#slider_bg{
float: left;
height: 380px;
}
#menu_bg{
background: #B1BB34;
height: 30px;
}
#content_bg{
background: #A562B1;
height: 180px;
margin-top: 25px;
}
#content{
background: url("image/bg.jpg") no-repeat;
width: 1000px;
margin: auto;
height: 180px;
margin-top: 25px;
}
<style>
您可以創建一個小提琴併發布鏈接? –
這只是和圖像,因此不是很有用。請創建一個小提琴或至少在您自己的服務器上正確構建網站。 –