Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - Re: Locking in to IE8 vs IE7 using CSS?

 
Thread Tools Search this Thread
Old 10-07-2009, 04:10 AM   #1
Default Re: Locking in to IE8 vs IE7 using CSS?


On 06 Oct 2009, Jack <> wrote:

> I'm using the "CSS - The missing manual" book to learn, among many
> other reasons, how to get rid of tables and have CSS do all the work.
>
> To try to stay legal, I'll say here that the following quote came
> from that book.
>
> This is not about the book, it's about something they say.
>
> Here's the quote.
> ---------------------------------------------
> "But wait—there’s more! IE 8 can also pretend to be IE 7. When
> someone viewing
> your site in IE 8 clicks a “compatibility view” button, IE 8 goes
> into IE 7 mode, displaying
> pages without IE 8’s full CSS 2.1 goodness. The same thing happens if
> Microsoft puts your website onto its Compatibility View List—a list
> of sites that
> Microsoft has determined look better in IE 7 than in IE 8. If you’re
> designing a site
> using the guidelines in this book, you won’t want IE 8 to act like IE
> 7…ever.
> Fortunately, there’s a way to tell IE 8 to stop all this nonsense and
> just be IE 8.
> Adding a single META tag to a web page instructs IE 8 to ignore
> Compatibility
> View and the Compatibility View List and always display the page
> using its most
> standards-compliant mode:
>
> <meta http-equiv="X-UA-Compatible" content="IE=edge" />"
> -----------------------------------------------------------
>
> I don't mean to get into the "FireFox versus IE" topic, but to me,
> this sounds like a good idea. If I'm going to do my best to make
> sure my website is the best and most current CSS ran site I can make
> it, I don't want Microsoft to come along and screw it up.
>
> What do you think?


The meta tag is probably a good idea but I'll venture to say that in a
relatively short time compared to past history ie7 won't be a
significant player in the browser game, anyway.

--
Neredbojias
http://www.neredbojias.org/
http://www.neredbojias.net/


Neredbojias
  Reply With Quote
Old 11-03-2009, 09:22 PM   #2
Pedro Sousa
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
IE8 totally screws CSS. unbelievable


Pedro Sousa
  Reply With Quote
Old 11-03-2009, 10:16 PM   #3
dorayme
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
In article
<99a0e5a3-7f48-471c-8147->,
Pedro Sousa <> wrote:

> IE8 totally screws CSS. unbelievable


Talk about putting the icing on the cake of a no-URL post!

--
dorayme


dorayme
  Reply With Quote
Old 11-03-2009, 10:23 PM   #4
Jonathan N. Little
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
dorayme wrote:
> In article
> <99a0e5a3-7f48-471c-8147->,
> Pedro Sousa<> wrote:
>
>> IE8 totally screws CSS. unbelievable


Did Pedro have an epiphany?

>
> Talk about putting the icing on the cake of a no-URL post!
>


Well at lease these folks know what *they* are thinking...maybe...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com


Jonathan N. Little
  Reply With Quote
Old 11-04-2009, 05:27 AM   #5
Neredbojias
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
On 03 Nov 2009, Pedro Sousa <> wrote:

> IE8 totally screws CSS. unbelievable


No it doesn't. Yes, there are some mistakes, but all browsers have
some mistakes; I can show you mistakes in Opera which is touted as the
finest css-renderer out there. The one ie8 css "faux pas" that caused
me (non-trivial) problems so far related to hover in lists; other than
that, I can live with it fairly well. However, the question is will
they fix it (and other probs) in ie9? I've noticed that browsers tend
to carry some of the same admittedly-possibly-fairly obscure css errors
from version to version to version.

--
Neredbojias
http://www.neredbojias.org/
http://www.neredbojias.net/


Neredbojias
  Reply With Quote
Old 11-04-2009, 05:35 AM   #6
Nik Coughlin
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
"Neredbojias" <> wrote in message
news: .net...
> On 03 Nov 2009, Pedro Sousa <> wrote:
>
>> IE8 totally screws CSS. unbelievable

>
> No it doesn't. Yes, there are some mistakes, but all browsers have
> some mistakes; I can show you mistakes in Opera which is touted as the
> finest css-renderer out there.


Ah yes, Opera. position: absolute in a parent container that is also
absolutely positioned fails!



Nik Coughlin
  Reply With Quote
Old 11-04-2009, 05:56 AM   #7
dorayme
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
In article <hcr3ti$svn$>,
"Nik Coughlin" <> wrote:

> "Neredbojias" <> wrote in message
> news: .net...
> > On 03 Nov 2009, Pedro Sousa <> wrote:
> >
> >> IE8 totally screws CSS. unbelievable

> >
> > No it doesn't. Yes, there are some mistakes, but all browsers have
> > some mistakes; I can show you mistakes in Opera which is touted as the
> > finest css-renderer out there.

>
> Ah yes, Opera. position: absolute in a parent container that is also
> absolutely positioned fails!


On my Opera 10 for Mac, for example,

#absolute {
position: absolute;
top: 50px;
left: 50px;
}

#absolutelyAbsolute {
position: absolute;
top: 0;
left: 0;
}

<div id="absolute">...
<p id="absolutelyAbsolute"><img src="pics/crimson.png"></p>
</div>


does not fail?

--
dorayme


dorayme
  Reply With Quote
Old 11-04-2009, 06:34 AM   #8
Nik Coughlin
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
"dorayme" <> wrote in message
news:doraymeRidThis-...
> In article <hcr3ti$svn$>,
> "Nik Coughlin" <> wrote:
>
>> "Neredbojias" <> wrote in message
>> news: .net...
>> > On 03 Nov 2009, Pedro Sousa <> wrote:
>> >
>> >> IE8 totally screws CSS. unbelievable
>> >
>> > No it doesn't. Yes, there are some mistakes, but all browsers have
>> > some mistakes; I can show you mistakes in Opera which is touted as the
>> > finest css-renderer out there.

>>
>> Ah yes, Opera. position: absolute in a parent container that is also
>> absolutely positioned fails!

>
> On my Opera 10 for Mac, for example,
>
> #absolute {
> position: absolute;
> top: 50px;
> left: 50px;
> }
>
> #absolutelyAbsolute {
> position: absolute;
> top: 0;
> left: 0;
> }
>
> <div id="absolute">...
> <p id="absolutelyAbsolute"><img src="pics/crimson.png"></p>
> </div>
>
>
> does not fail?


Yes, it's conditional on using both top/bottom or left/right positioning
together

See:

http://nrkn.com/opera9Bug/
http://nrkn.com/opera9Bug/min/

And my original posting:
<http://groups.google.com/group/alt.html/browse_thread/thread/4b00c8815bfc8c5f>



Nik Coughlin
  Reply With Quote
Old 11-04-2009, 07:09 AM   #9
dorayme
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
In article <hcr7bo$hln$>,
"Nik Coughlin" <> wrote:

> "dorayme"
> > "Nik Coughlin"


> >> Ah yes, Opera. position: absolute in a parent container that is also
> >> absolutely positioned fails!

> >
> > On my Opera 10 for Mac... [this above]
> >
> > does not fail?

>
> Yes, it's conditional on using both top/bottom or left/right positioning
> together
>
> See:
>
> http://nrkn.com/opera9Bug/
> http://nrkn.com/opera9Bug/min/
>
> And my original posting:
> <http://groups.google.com/group/alt.h...00c8815bfc8c5f
> >


OK, something complicated... that will teach me for picking up fag
ends... <g>

--
dorayme


dorayme
  Reply With Quote
Old 11-04-2009, 10:30 AM   #10
Neredbojias
 
Posts: n/a
Default Re: Locking in to IE8 vs IE7 using CSS?
On 03 Nov 2009, "Nik Coughlin" <> wrote:

> "Neredbojias" <> wrote in message
> news: .net...
>> On 03 Nov 2009, Pedro Sousa <> wrote:
>>
>>> IE8 totally screws CSS. unbelievable

>>
>> No it doesn't. Yes, there are some mistakes, but all browsers have
>> some mistakes; I can show you mistakes in Opera which is touted as
>> the finest css-renderer out there.

>
> Ah yes, Opera. position: absolute in a parent container that is also
> absolutely positioned fails!


Ja, das iz it. And as you indicate in a later post, it's from *where*.
Positioning the child from the left is no problem but positioning it
from the right is screwing up the little overlay images in my movie
page. Shalzbutt!

--
Neredbojias
http://www.neredbojias.org/
http://www.neredbojias.net/


Neredbojias
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Locking locking resolution Frontpage raiderhawk General Help Related Topics 0 01-08-2008 01:42 AM
locking my hard drive tbg General Help Related Topics 1 10-16-2006 11:08 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46