使用CSS单击显示/隐藏div

我有一个菜单和三个隐藏的div,这些div取决于用户选择的选项。我只想使用CSS来显示/隐藏它们。我现在正在使用jquery,但我希望禁用js即可访问它。此处有人为其他人提供了此代码,但仅在div:hover或div:active时有效,当我将其更改为div:visited时它不起作用。我是否需要添加某些内容,或者这不是正确的方法?感谢您的帮助:)

问题是我的客户希望菜单被选中时此div滑动/淡入,但是我仍然希望它们在关闭javascript的情况下正确显示。也许z-index可以解决问题…?

回答:

CSS没有onlclick事件处理程序。您必须使用Javascript。

a:link {color:#FF0000;}    /* unvisited link - link is untouched */

a:visited {color:#00FF00;} /* visited link - user has already been to this page */

a:hover {color:#FF00FF;} /* mouse over link - user is hovering over the link with the mouse or has selected it with the keyboard */

a:active {color:#0000FF;} /* selected link - the user has clicked the link and the browser is loading the new page */

以上是 使用CSS单击显示/隐藏div 的全部内容, 来源链接: utcz.com/qa/435661.html

回到顶部