MC Breit: Wie links und rechts neben der Seite einen Rand einfügen?

Beitrag lesen

Hi!

Einfach so:

<html>
 <head>
  <style type="text/css">
  .rand {
        border-right:80px solid red;
        border-left:80px solid red;
        }
  </style>
 </head>
 <body>
  <table class="rand">
   <tr>
    <td>
     HIER DER SEITENINHALT
    </td>
   </tr>
  </table>
 </body>
</html>

Dottet sieht übrigens auch ganz lustig aus ;)
Mfg, EmCee