[css-d] Remove whitespace between elements

2012-07-11 Thread Ruben van den Berg
Dear all, I'd like to remove the whitespace between the header image and the menu (red background) below it. I specified [margin:0;] for both elements and [float:left;] for the menu. But I somehow can't seem to get rid of the whitespace between them. Can anybody please tell me what I'm doing

Re: [css-d] Remove whitespace between elements

2012-07-11 Thread Isabel Santos
Hi Ruben, we can download the css file, but the link https://dl.dropbox.com/u/39492899/Flamenconl/flamenco_1.html[URL] even taking out the [URL] portion of it isn't working, so I'm not sure how the markup is layed out, could you fix the link, or paste the markup to the list? isabel On Wed,

Re: [css-d] Remove whitespace between elements

2012-07-11 Thread Ruben van den Berg
Dear Isabel, Thx for pointing that out. The html link is: https://dl.dropbox.com/u/39492899/Flamenconl/flamenco_1.html or please see below for the html as plain text. Thanks! Ruben !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//ENhttp://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html

Re: [css-d] Remove whitespace between elements

2012-07-11 Thread Isabel Santos
I'm not sure why is it happening, but div:first-child {height:236px;} removes the white space On Wed, Jul 11, 2012 at 12:41 PM, Ruben van den Berg ruben_van_den_b...@hotmail.com wrote: Dear Isabel, Thx for pointing that out. The html link is:

Re: [css-d] Remove whitespace between elements

2012-07-11 Thread Philippe Wittenbergh
Le 11 juil. 2012 à 20:41, Ruben van den Berg a écrit : I'd like to remove the whitespace between the header image and the menu (red background) below it. I specified [margin:0;] for both elements and [float:left;] for the menu. But I somehow can't seem to get rid of the whitespace between

Re: [css-d] Remove whitespace between elements

2012-07-11 Thread Ruben van den Berg
Thanks a lot! That was very helpful! Ruben From: e...@l-c-n.com Date: Wed, 11 Jul 2012 23:20:30 +0900 To: ruben_van_den_b...@hotmail.com CC: css-d@lists.css-discuss.org Subject: Re: [css-d] Remove whitespace between elements Le 11 juil. 2012 à 20:41, Ruben van den Berg a écrit :

[css-d] Float problem. I think.

2012-07-11 Thread BHomis
I'm doing over a very old website, and I'm having a problem with a floated div (content_main) not staying to the upper right. The problem can be found on _http://www.sportsmansresource.com/contact.htm_ (http://www.sportsmansresource.com/contact.htm) . No matter what I'm trying, it drops

[css-d] Vendor-prefixed CSS3

2012-07-11 Thread Kyle Sessions
When utilizing CSS3, I know it's generally best to make vendor-prefixed AND non-vendor-prefixed declarations, i.e., you should declare -moz-transform, -webkit-transform, -o-transform, and -ms-transform, along with just transform itself. Is there a suggested best practice for what order these

Re: [css-d] Float problem. I think.

2012-07-11 Thread Georg
On 12.07.2012 01:17, bho...@aol.com wrote: I'm doing over a very old website, and I'm having a problem with a floated div (content_main) not staying to the upper right. You are apparently using overflow: auto; on div class=section to contain floats, which creates a scrollbar that takes up

Re: [css-d] Vendor-prefixed CSS3

2012-07-11 Thread Philippe Wittenbergh
Le 12 juil. 2012 à 09:05, Kyle Sessions a écrit : When utilizing CSS3, I know it's generally best to make vendor-prefixed AND non-vendor-prefixed declarations, i.e., you should declare -moz-transform, -webkit-transform, -o-transform, and -ms-transform, along with just transform itself. Is

Re: [css-d] Vendor-prefixed CSS3

2012-07-11 Thread Georg
On 12.07.2012 02:05, Kyle Sessions wrote: My instinct would be to declare the non-vendor-prefixed one last, so if/when the browser supports that version of the declaration, it will overwrite the vendor-prefixed version of the declaration. Does that sound right? Yes. Always the non-prefixed

Re: [css-d] Vendor-prefixed CSS3

2012-07-11 Thread Kyle Sessions
On Wed, Jul 11, 2012 at 5:50 PM, Georg gunla...@c2i.net wrote: On 12.07.2012 02:05, Kyle Sessions wrote: My instinct would be to declare the non-vendor-prefixed one last, so if/when the browser supports that version of the declaration, it will overwrite the vendor-prefixed version of the

Re: [css-d] Float problem. I think.

2012-07-11 Thread BHomis
Greg, Thanks. That always bites me. Thanks again, Bruce In a message dated 7/11/2012 8:40:31 P.M. Eastern Daylight Time, gunla...@c2i.net writes: On 12.07.2012 01:17, bho...@aol.com wrote: I'm doing over a very old website, and I'm having a problem with a floated div (content_main)