Re: [css-d] layout does not work the same in NS and IE

2005-11-10 Thread Gunlaug Sørtun
Thomas French wrote:
> I would like the right div to stay to the right of the left div, not 
> below. The right div can scrunch up or go off the right side of the 
> screen and not be displayed if the browser window is not wide enough.
> 
We usually apply a 'min-width' hack to IE/win to fix that problem.
Depends on 'mode' (Strict/Quirk) which one you might be able to use.
You may find something useful here:

and here: 

> A common theme I am experiencing is fix one problem create another.

Most problems are related to IE/win these days.
Just have a look at all the bugs and lack of standard-support that the
IE-team have to fix for the next version (IE7), and you'll get a good
picture of our daily struggle :-)

"We fully recognize that IE is behind the game today in CSS support."
-- 

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] layout does not work the same in NS and IE

2005-11-10 Thread Thomas French
Jim,
Inline solves the problem of a gap occurring when reducing the width but now
when the width is reduced, the right div goes below the left div. I would
like the right div to stay to the right of the left div, not below. The
right div can scrunch up or go off the right side of the screen and not be
displayed if the browser window is not wide enough.

A common theme I am experiencing is fix one problem create another.
I will give your recommended reading a good going over this weekend!
Thank you
Tom
http://pws.cablespeed.com/~tom.french/example1.html
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Davis
Sent: Wednesday, November 09, 2005 10:35 PM
To: Thomas French
Cc: css-d@lists.css-discuss.org
Subject: Re: [css-d] layout does not work the same in NS and IE

Thomas,

The to fix the IE double margin bug, in your block_1 div change
display: block (which is not needed) to display: inline.

To read more about this bug and many others read everything at:
http://www.positioniseverything.net/

and on the wiki for this list:  http://css-discuss.incutio.com/

Jim

On 11/9/05, Thomas French <[EMAIL PROTECTED]> wrote:
> I am new to CSS and am having trouble getting css to work consistently in
> different browsers.
>
> 
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] layout does not work the same in NS and IE

2005-11-10 Thread Thierry Koblentz
Thomas French wrote:
> I am new to CSS and am having trouble getting css to work
> consistently in different browsers.
> A lesser question is: Is there any way to get some similar to work in
> NS
> 4.7?

Hi Thomas,
This may help you address specific browsers issues while keeping your
stylesheets plain and simple (CSS filters free):
http://www.tjkdesign.com/articles/branching.asp

As Zoe suggested already, the wiki contains CSS layouts that are NN4
compatible.

Thierry | www.TJKDesign.com

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] layout does not work the same in NS and IE

2005-11-10 Thread Zoe M. Gillenwater
Thomas French wrote:

>A lesser question is: Is there any way to get some similar to work in NS
>4.7?
>
>
>http://pws.cablespeed.com/~tom.french/example1.html
>  
>

Sure, but you need to decide what degree of support you want to include 
for NN 4.7.  Does the site need to look the same, or does it need to 
work?  If it really truly needs to look the same, I recommend you use a 
table layout and style its content with CSS, and get ready for some 
headaches.  If it just needs to work and be accessible to NN 4.7 users, 
I recommend you hide your styles from it using @import, perhaps with a 
*very* simple sheet served to it via link just to style text.

See the wiki for methods of hiding CSS from NN 4.x and for links to some 
layouts that work with NN 4.x.

Zoe

-- 
Zoe M. Gillenwater
Design Services Manager
UNC Highway Safety Research Center
http://www.hsrc.unc.edu

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] layout does not work the same in NS and IE

2005-11-09 Thread Jim Davis
Thomas,

The to fix the IE double margin bug, in your block_1 div change
display: block (which is not needed) to display: inline.

To read more about this bug and many others read everything at:
http://www.positioniseverything.net/

and on the wiki for this list:  http://css-discuss.incutio.com/

Jim

On 11/9/05, Thomas French <[EMAIL PROTECTED]> wrote:
> I am new to CSS and am having trouble getting css to work consistently in
> different browsers.
>
> http://pws.cablespeed.com/~tom.french/example1.html
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] layout does not work the same in NS and IE

2005-11-09 Thread Thomas French
I am new to CSS and am having trouble getting css to work consistently in
different browsers.

 

The page is real close to what I want, but when the display's width is
reduced in IE(v6) the area around the table

 

creates a large gap. This does not happen in NS(v8).

 

 

 

A lesser question is: Is there any way to get some similar to work in NS
4.7?

 

http://pws.cablespeed.com/~tom.french/example1.html

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/