Alex S.: Tabellendesign mit Kopfüberschrift? (siehe Bild)

Hallo zusammen,

ich möchte sowas gerne in HTML als Tabelle hinkriegen - ich habe mich schon wund gesucht - kann mir einer einen Tipp geben?

<img src="http://www.morpheuz.net/host/tdesign.gif" border="0" alt="">

ciao Alex

  1. ich möchte sowas gerne in HTML als Tabelle hinkriegen - ich habe mich schon wund gesucht - kann mir einer einen Tipp geben?

    <img src="http://www.morpheuz.net/host/tdesign.gif" border="0" alt="">

    in etwa so:
    <style type="text/css">
    body{background-color: #fff; color:#000;}

    #test h1
    {
        position:relative;
        top:-0.5em;
        width:10em;

    font-size:1em;
        padding: 0 0.5em 0 0.5em;
        margin:0 80% 0 1em;
        background-color: #fff;
    }
    #test p
    {
        margin:-0.5em 0 0 0;

    }
    #test
    {
        width:30em;
        border:1px solid black;
    }

    </style>
    </head>

    <body>

    <div id="test">
    <h1>Überschrift</h1>
    <p>text text text text text text text text
    text text text text text text text text
    text text text text text text text text
    text text text text text text text text
    </p>
    </div>

    Struppi.