在我腦子裏,我想用「你的形象比我們更重要。」有更重要的重點。標題生成
我也想,要帶下劃線和陰影,以配合紅色背景(白色陰影)。這也加重我辯論是否應該閃爍或淡出。
出於某種原因,我的CSS不工作就可以了。 HTML代碼:
<!-- This is a HTML Document-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="dld.css">
<title>Dave's Logo Designs</title>
</head>
<header>
<div id="header">
<h1>Your Image is <em>More Important</em> Than Ours</h1>
</div>
</header>
<body>
<h1>Welcome to the official site of Dave's Logo Designs<h1>
</body>
</html>
CSS到目前爲止:
header {
width: 100%;
height: 200px;
}
header:h1 {
color: red;
text-shadow: 0px 2px 2px white;
font-size: 25px;
font-family: impact;
}
header:em {
color: white;
font-weight: bold;
text-decoration: underline;
font-size: 30px;
font-family: impact;
}
沒有的工作。可能在我的結局上有些愚蠢。我在這裏先向您的幫助表示感謝。
你應該把''你''標籤內。 –
選擇器也應該是'的#header> h1'和'的#header em'。 – Gavin
非常感謝。我在飛行中學習。希望我能理清這一點。 –