gpt4 book ai didi

html - 如何设置
元素的箭头样式?

转载 作者:技术小花猫 更新时间:2023-10-29 12:05:36 31 4
gpt4 key购买 nike

我正在使用此代码(另请参阅 JSFiddle)更改悬停时的箭头背景颜色。然而,这不起作用,因为箭头只会在点击时改变颜色。

summary::-webkit-details-marker {
color: #B6B6B6;
font-size: 20px;
margin-right: 2px;
}
summary::-webkit-details-marker:hover {
color: red;
}
<details class="DetailContainer">
<summary>Step by Step Guides</summary>
<details class="DetailsOne">
<summary>Getting Started</summary>
<p>1. Signup for a free trial</p>
</details>
<details class="DetailsOne">
<summary>Setting up a backup schedule</summary>
<p>This step assumes you have already signed up and installed the software</p>
</details>
</details>

最佳答案

:hover 应该在 details 标签上(而不是 summary)。

试试这个,它会起作用:

 details:hover summary::-webkit-details-marker:hover {
color:red;
background:white;
}

关于html - 如何设置 <details> <summary> 元素的箭头样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39622394/

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