JSFiddle - React, Tailwind, and code Playground
HTML
<span class="bedrock" style="text-shadow:2px 2px 2px;cursor: pointer;">Bedrock</span>
<div id="dialog" title="Bedrock" style="display:none;">
<p>Seulement 10 bedrock pour 1€</p>
<p>Interdiction d'utiliser de la bedrock à des fins de grief.</p>
<p>Autorisée sur les maps qui se regénerent</p>
</div>
JavaScript
$('span.bedrock').click( function() {
$('#dialog').dialog({
width: 350,
modal: true
});
});