Thanks in advance
.pic
{
width:115px;
height:150px;
border:solid;
}
Well, I don't know if you have declared any other stuff for the .pic class
elsewhere, but I think you have forgotten border-width and border-color.
.pic {
width: 115px;
height: 150px;
border-style: solid;
border-color: black;
border-width: 1px;
}
or you can type
.pic {
width: 115px;
height: 150px;
border: solid black 1px;
}
Best regards
Alexander L Holm
I have since discovered that my picture shows no white space in
Netscape...only IE 6.0.
There is no other declaration for this anywhere else, only in the .pic. The
color and width seem to have no effect on the white space at the bottom.
Any other ideas?
Thanks
"Alexander Ludvig Holm" <lc4...@chello.no> wrote in message
news:PUlq9.1914$rw2....@news01.chello.no...
Well, do you have screenshot of it? :-) Or do you have a site on the net
where you have this code?
I made an simple code here, looks fine for me in IE6 and Mozilla. Blue image
is same size as described in the css code, the green one is 300x300 just to
check if that was a problem... Red image is 50x50.
http://home.chello.no/~shellan1/imgbordertest/index.html
Can you post a URL or the offending html?
--
PeterMcC
If you feel that any of the above is incorrect,
inappropriate or offensive in any way,
please ignore it and accept my apologies.