<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
.btn {
display: flex;
flex-wrap: wrap;
width: 80px;
padding: 10px;
}
</style>
</head>
<body>
<h1>Button mit flex-wrap</h1>
<button class="btn" type="submit">Mein Buttons Beispiel</button>
</body>
</html>