在我的示例http://jsfiddle.net/cXbMb/中,我需要完整顯示徽標圖像,即標題圖像必須部分透支。還有下一個要求:標題圖像必須在標題下方5px開始。CSS:在子背景圖像上顯示父級背景圖像
<!DOCTYPE html>
<html><head></head>
<body>
<header>
<h1>Headline</h1>
<div></div>
</header>
</body>
</html>
body { padding: 0; margin: 0 auto; width: 400px; }
header {
background-image: url('http://placehold.it/100x50/ffff00&text=LOGO');
background-position: left top;
background-repeat: no-repeat;
}
header h1 { text-align: right; margin: 0 0 5px; padding: 0; font-size: 1em; }
header div {
background-image: url('http://placehold.it/400x100/0000ff&text=HEADER');
background-position: left top;
background-repeat: no-repeat;
height:200px;
}
聽起來像你需要'z-index'。 – Spudley 2013-05-05 20:40:50