JSFiddle - React, Tailwind, and code Playground
by Imabot
HTML
<h1>.style</h1>
<p id="target">Texte à mettre en forme.</p>
<button onclick="document.getElementById('target').style.fontWeight = 'bold';">gras</button>
<button onclick="document.getElementById('target').style.fontStyle = 'italic';">italique</button>
<button onclick="document.getElementById('target').style.textDecoration = 'underline';">Souligné</button>
<button onclick="document.getElementById('target').removeAttribute('style');">Reset</button>