gpt4 book ai didi

html - 改变 :hover to :active for mobile touch devices

转载 作者:太空宇宙 更新时间:2023-11-03 22:12:58 25 4
gpt4 key购买 nike

我想在桌面上使用 :hover 效果(工作得很好)并切换到移动设备上的 :active

.dropdown:hover,
.dropdown:active .dropdown-content {
display: block;
right: 20px;
}
<div class="dropdown">
<div class="dropdown-content">
<p id="dropdown-element">Dashboard öffnen</p>
<p id="dropdown-element">Beratung beenden</p>
</div>
</div>

最佳答案

您可以使用 @media 构造来区分 CSS 规则:

<style>
/* for all types */
.dropdown-content {
...
}
/* for desktop (also old ones) */
@media (min-width : 641px)
{
.dropdown:hover {
...
}
}
/* for smartphones */
@media (max-width : 640px)
{
.dropdown:active {
...
}
}
</style>
<div class="dropdown">
<div class="dropdown-content">
<p id="dropdown-element">Dashboard öffnen</p>
<p id="dropdown-element">Beratung beenden</p>
</div>
</div>

根据需要调整@media max-widthmin-width

关于html - 改变 :hover to :active for mobile touch devices,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58324572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com