Hallo,
ich teste mich gerade mal ein wenig in CSS aus, deswegen ist die Frage schätze ich mal auch einfach zu beantworten.
Auf dem Bild ist "Home" rot markiert das ganz soll die Navigation werden, das blaue soll später mal der Text werden ich möchte die Navigation aber vor dem Text haben sprich das kleine Lücke entsteht sondern das "Home" an den gelben Platz rutscht und die Lücke somit weg fällt. Mein CSS Code sieht z.Z. so aus.
Code
body{ background-color: #424242;}#header{ color: #E6E6E6; margin-top: 1em; margin-right: 0em; margin-left: 2em; margin-bottom: 1em;}.navi{ color: E8E8E8; margin-top: 1em; margin-right: 16em; margin-left: 0em; margin-bottom: 0em;}.text{ color: #E6E6E6; margin-top: 2em; margin-right: 16em; margin-left: 16em;}
Und mein HTML-Code so.
HTML
<html> <head> <title>ThePixel5D - NET</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> </head> <body> <h1 id="header">ThePixel5D</h1> <div class="navi"> <p>HOME</p> </div> <div class="text"> <p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p> </div> </body></html>
Ich hoffe ihr könnt mir die Frage beantworten.
EDIT1: Text
EDIT2: Code angepasst