私は何らかのテキストとイメージをHTMLとCSSでスクリプト化しましたが、イメージをオーバーレイする方法はわかりません(イメージをテキストに重ねる方法)。CSS/HTMLは画像にテキストを重ねて表示しますか?
HTML:
<!DOCTYPE html>
<html lang ="de">
<head>
<title>SirMarkypus | Homepage</title>
<link href="homepage.css" rel="stylesheet" type="text/css">
<meta charset="utf-8">
</head>
<body>
<h1 id="headline1">Willkommen auf dem SirMarkypus-Server!</h1>
<img id="backgrounder1" src="img/backgrounder.png" alt="SirMarkypus-
Backgrounder">
</body>
</html>
はCSS:CSSで
body {
background: gray;
}
#backgrounder1 {
position: absolute;
top: -60px;
width: 1910px;
height: 720px;
}
#headline1 {
position: relative;
margin: 0px;
padding: 10px;
text-align: center;
font-family: "Verdana";
font-size: 48px;
color: #FFF;
}
H1自体に背景画像を使用しないのはなぜ? –
@Nawed Khanどうすればいいですか? – SirMarkypus