我在details元素中有一个摘要:
<details>
<summary>Hello</summary>
</details>
我试过:
summary {
display: block; /* works in firefox */
list-style: none; /* works in firefox */
}
/* didn't work in any browser */
summary::marker,
summary::-webkit-details-marker {
display: none;
}
/* Solution for Chrome and Safari? */
从这个问题How can you hide the arrow that is displayed by default on the HTML5 element in Chrome?。
但这些解决方案中没有一个能在chrome上真正起作用。
我如何删除这个箭头在 chrome 呢?
3条答案
按热度按时间8mmmxcuj1#
这对我有用!
bnlyeluc2#
ruyhziif3#