gast42: Formate in "style type" funktionieren nicht wie in "p style"

Beitrag lesen

Natürlich "muss" ich dann auch was (für mich) neues ausprobieren. Dazu gehört u.a. z.B.:

<gross>Test1</gross>
<norm>Test2</norm>
<klein>Test3</klein>

  
das ist dermaßen neu, dass es das einfach noch nicht im HTML gibt.  
  
Daher empfehle ich die übliche Variante:  
  
~~~html
  
<style type="text/css">  
.gross { font-weight:bold; font-size:18pt; font-family:Verdana; color:#000000; text-align:left; margin-left:25px; margin-right:25px; margin-top:10px; }  
  
.norm { font-weight:bold; font-size:12pt; font-family:Verdana; color:#000000; text-align:justify; margin-left:25px; margin-right:25px; margin-top:10px; }  
  
.klein { font-weight:bold; font-size:1em; font-family:Verdana; color:#123456; }  
</style>  
  
<p class="gross">Test1</p>  
<p class="norm">Test2</p>  
<p class="klein">Test3</p>

wobei es für gross, norm und klein sicherlich bessere Klassenbezeichner gäbe, die auch inhaltlich etwas rüber bringen.