Wie man auf meiner Seite, ist der Abstand zwischen der Überschrift und dem darunter liegenden Text auf der linken Seite größer, als auf der rechten Seite.
Kann es daran liegen, dass ich rechts eine Liste verwende oder woran liegt das?
Meine .css
Code
body {
margin: 0px;
padding: 0px;
background: black;
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Helvetica, Arial, sans-serif; }
#header {
width: 100%;
height: 35px;
background: red; }
#page {
width: 100%;
height: auto;
background: #222222; }
#content {
width: 70%;
height: auto;
float: left;
padding: 15px 10px 15px 15px;
text-align: right;
font-size: x-small;
font-weight: normal;
color: #CCCCCC; }
.post {
width: auto;
height: auto; }
.post h2 {
font-size: small;
font-weight: normal;
margin-bottom: 5px; }
.post h2 a:link, .post h2 a:visited, .post h2 a:active, .post h2 a:hover {
text-decoration: none;
color:#999999; }
.post a:link, .post a:visited, .post a:active, .post a:hover {
text-decoration: none;
color:#999999; }
.info {
width: auto;
height: auto; }
.info a:link, .info a:visited, .info a:active, .info a:hover {
text-decoration: none;
color:#999999; }
.navi {
width: auto;
height: auto; }
.navi a:link, .navi a:visited, .navi a:active, .navi a:hover {
text-decoration: none;
color:#666666; }
#sidebar {
width: 20%;
height: auto;
float: left;
padding: 15px 15px 15px 10px;
text-align: left;
font-size: x-small;
font-weight: normal; }
#sidebar h2 {
font-size: small;
font-weight: normal;
color: #999999;
margin-bottom: 5px; }
#sidebar .h3 {
font-size: x-small;
font-weight: normal; }
#sidebar .h3 a:link, #sidebar .h3 a:visited, #sidebar .h3 a:active, #sidebar .h3 a:hover {
text-decoration: none;
color: #777777; }
#sidebar ul {
margin: 0px;
padding: 0px;
list-style-type: none; }
#sidebar li a:link, #sidebar li a:visited, #sidebar li a:active, #sidebar li a:hover {
text-decoration: none;
color: #CCCCCC; }
#clear {
width: auto;
height: auto;
clear: both; }
#footer {
width: 100%;
height: 35px;
background: red; }
Alles anzeigen