!752
// these don't work:
//
Font size 20!
// Font size 20!
//
Font size 20!
// This works - but you have to center the whole thing too (in JLabel constructor)
// Bringen Sie die Komponenten in die richtige Reihenfolge!
Zeile 2
Zeile 3
static S html = [[
Bringen Sie die Komponenten in die richtige Reihenfolge!
Zeile 2
Zeile 3
]];
p {
JLabel l = new JLabel(html.trim(), JLabel.CENTER); // trim is important!
l.setVerticalAlignment(l.TOP);
makeFrame(l);
}