core-design
Grüß euch folgendes Problem habe ich
| code: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
|
#containerMain {
width:900px;
max-width:800px;
margin:auto;
text-align:left;
padding:0px 100px 0px 0px;
background-image:url(../../img/containerMainBg.gif);
background-position:left top;
background-repeat:repeat-y;
|
|
Das ist ein teil der CSS
nun will ich aber nein Rand ganz unter haben. Nur irgendwie fällt mir der be**** code nicht ein.
Danke
core-design
Naja den Code habe ich schon
| php: |
1:
|
<?php border-bottom:1px groove #000000; ?> |
|
Ergebniss passt noch nicht ?
Der Rand steht noch zu weit.
Hmm....
hier mal der Code
| code: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
|
#containerMain {
width:900px;
max-width:800px;
margin:auto;
text-align:left;
padding:0px 100px 0px 0px;
background-image:url(../../img/containerMainBg.gif);
background-position:left top;
background-repeat:repeat-y;
border-bottom:1px groove #000000; |
|

pokerde
Ich glaube wegen der Breite: 900px, wenn du mal die Zeile width: 900px; mal weglöschst, muss ja alles stimmen.
Steusi
| code: |
1:
2:
3:
4:
|
width:900px;
max-width:800px;
|
|
hm, ja würde entweder die erste Breite wegnehmen, oder die Angabe:
| code: |
1:
2:
3:
|
border-bottom:1px groove #000000;
|
|
nicht im Main sondern in den linken und rechten Div packen
Oder man nimmt eine extra Linie (hr) und legt die breite fest, aber ob das nachher so gut aussieht weis ich net.