[HTML] Float dell' <h1>

Sarrio

Nuovo Utente
24 Set 2016
7
0
1
Salve, scusate la banalità della domanda ma non riesco a venirne a capo.
Come mai il seguente codice
Codice:
<html>
<head></head>
<body>
<h1 style="display: inline;">Titolo1</h1>
<h1 style="display: inline; float:right;">Titolo2</h1>
</body>
</html>
mette il "Titolo2" a destra, ma non sulla stessa riga? Come fare per averli sulla stessa?
 
Codice:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento senza titolo</title>
</head>

<body>
<h1 style="display: inline;float:left;">Titolo1</h1>
<h1 style="display: inline;float:left;">Titolo2</h1>
<div style="clear:both;">&nbsp;</div>
</body>
</html>
 

Discussioni simili