Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 CSS 更改这个 HTML5 片段的图标:
<details> <summary>Hello</summary> <p>The details</p> </details>
有什么线索吗?
在 WebKit 浏览器上,您可以执行以下操作:
summary::-webkit-details-marker {display: none} summary:before {content: ""} details[open] summary:before {content: ""}