Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to style the arrow of <details> <summary> elements?

Tags:

html

css

I am using this code (also see the JSFiddle) to change the arrow background color on hover. However this doesn't work as the arrow only changes its color on click.

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>
like image 237
user3741124 Avatar asked Sep 21 '16 16:09

user3741124


1 Answers

The :hover should be on the details tag (not the summary).

Try this, it will work:

 details:hover summary::-webkit-details-marker:hover {
     color:red;
     background:white;
 }
like image 127
Asifuzzaman Redoy Avatar answered Oct 20 '22 04:10

Asifuzzaman Redoy