Richard
03-13-2004, 12:46 AM
This is my CSS:
H1 {
FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #000000; FONT-FAMILY: Arial; PADDING-BOTTOM: 0px; margin-bottom: 0px
}
P {
PADDING-top: 0px; margin-top: 0px
}
The margin and padding parts are supposed to close the gap between a H1 title and the following paragraph.
The small space has closed. But there is still a big space in between, the same size that a '<br><br>' would create.
This is the html on my actual page:
<h1>The title</h1><br>
<p align="justify"><span class="xzy">Blah blah blah</span></p>
Which on the page shows this:
The title
Blah blah blah
I want it to look like this, so there is no space at all:
The title
Blah blah blah
How?
H1 {
FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #000000; FONT-FAMILY: Arial; PADDING-BOTTOM: 0px; margin-bottom: 0px
}
P {
PADDING-top: 0px; margin-top: 0px
}
The margin and padding parts are supposed to close the gap between a H1 title and the following paragraph.
The small space has closed. But there is still a big space in between, the same size that a '<br><br>' would create.
This is the html on my actual page:
<h1>The title</h1><br>
<p align="justify"><span class="xzy">Blah blah blah</span></p>
Which on the page shows this:
The title
Blah blah blah
I want it to look like this, so there is no space at all:
The title
Blah blah blah
How?