如何去掉 <details> 和 <summary> 标签周围的框架板?
How do I get rid of the frameboard surrounding the <details> & <summary> tags?
如果单击 或 grey-blue 框架板将出现在标题周围。
如何编辑 CSS 和 HTML?
<style>
summary::-webkit-details-marker {
display:none;
color:transparent;
</style>
访问 https://jimmydance.com/belly-dance-history.html 看看。
谢谢
你只需要使用:
summary {
outline: none;
}
如果单击 或 grey-blue 框架板将出现在标题周围。 如何编辑 CSS 和 HTML?
<style>
summary::-webkit-details-marker {
display:none;
color:transparent;
</style>
访问 https://jimmydance.com/belly-dance-history.html 看看。
谢谢
你只需要使用:
summary {
outline: none;
}