Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p {
width: 50px;
padding: 0 20px;
margin: 0;
word-break: keep-all;
text-align: center;
}
</style>
</head>
<body>
<h1>Bouton avec word-break</h1>
<button type="submit">
<p>Exemple de mon bouton</p>
</button>
</body>
</html>