<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
summary {
display: block;
/* works in firefox */
list-style: none;
/* works in firefox */
}
summary::after {
display: block;
list-style: none;
}
summary::-webkit-details-marker {
display: none;
}
</style>
</head>
<body>
<details>
<summary>Hello</summary>
</details>
</body>
</html>