JSFiddle - React, Tailwind, and code Playground

by fxi

HTML

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<details>
  <summary id="a">
  avec bootstrap, ça marche pas
  </summary>

  hello there
</details>


<details>
  <summary id="b">
  mais on peut corriger ça.
  </summary>
  hello there
</details>

CSS

details {
  padding: 10px;
  cursor: pointer;
}

details>summary {
  cursor: pointer;
  outline: none;
}

#b {
  display: list-item;

}