开发者

How can I override the browser-generated triangle icon in a <details> element?

开发者 https://www.devze.com 2023-04-06 04:35 出处:网络
I\'d like to change the icon with CSS for this snippet of HTML5: <details> <summary>Hello</summary>

I'd like to change the icon with CSS for this snippet of HTML5:

<details>
  <summary>Hello</summary>
  <p>The details</p>
</details>
开发者_如何学Python

Any clues?


On WebKit browsers you could do:

summary::-webkit-details-marker {display: none}

summary:before {content: ""}
details[open] summary:before {content: ""}
0

精彩评论

暂无评论...
验证码 换一张
取 消