主页只有几个按钮,用于显示用户指定的内容。
这些按钮#home不在标题中,因此按钮将仅显示在 on 上#home。
<section id="home">
<a href="#content">content</a>
<a href="#something">something</a>
<a href="#someelse">someelse</a>
</section>
<section id="content">
<section id="something">
<section id="someelse">
我:target在 css 上找到了方法,它看起来很容易使用并且工作正常,但#home没有显示。似乎只有当我在外面有固定标题时它才有效section
section {
display: none;
}
section:target {
display: block;
}
除此以外的每个部分#home都会有后退按钮,该按钮也会将用户发送到该按钮#home。这在方法上相当简单,:target因为我刚刚使用了a href="#",并且它有效。
我还可以使用什么其他方法?
梵蒂冈之花
相关分类