-1

我想根据 CSS 将 HTML 元素设置为“隐藏”。不幸的是,该元素没有反应,就好像我的代码已经解决了它一样。这是我的代码:

.archive-header {
    display: none;
}

HTML 代码:

<html>
<head>...</head>
<header>...</header>
<div id="main" class="wrapper">
<section id="primary" class="site-content">
<div id="content" class="main">
<header class="archive-header"> <!-- hide this header element and everything inside -->
<h1 class="archive-title">...</h1>
</header>
...

更新 对不起,我的文本编辑器更改了引号,原始代码使用了正确的。

4

4 回答 4

2

您必须使用正确的引号" "' '

<div id="main" class="wrapper">
<section id="primary" class="site-content">
<div id="content" class="main">
<header class="archive-header"> <!-- hide this header element and everything inside -->
<h1 class="archive-title">...</h1>
</header>
于 2013-09-24T13:53:45.533 回答
1

您只能使用 " 或 ' 来引用属性值。

<html>
<head>...</head>
<header>...</header>
<div id="main" class="wrapper">
<section id="primary" class="site-content">
<div id="content" class="main">
<header class="archive-header"> <!-- hide this header element and everything inside -->
<h1 class="archive-title">...</h1>
</header>
于 2013-09-24T13:55:10.283 回答
0

尝试这个,

<header class="archive-header"> <!-- hide this header element and everything inside -->
   <h1 class="archive-title">...</h1>
</header>
于 2013-09-24T13:54:50.760 回答
-1

用真实的引号替换你的引号:“,这应该足够了

于 2013-09-24T13:54:26.053 回答