On 12 May 2005, at 3:30 am, Ingo Chao wrote:

The filter proved useless as Safari 1.3 won't accept "<percentage> no-repeat <percentage>", similar to Opera. Safari computes 0.995% correctly, though. IE and Mozilla accept this splitting.
So within this test, there is actually no way to serve 95.5% to Safari, but not to Opera. (The exponential notation could be part of an IE hack, but won't validate.)

The one (temporary !important) solution is the media queries [1] filter to serve a diff value to Op.
h3 {background: url(image.png) 99.5% 1% no-repeat}
@media screen and (min-width: 0px) { /* opera */
*>h3 {background: url(image.png) 99% 1% no-repeat}
}


This is a temporary (!important) solution, as sooner than later, Gecko will support media queries. Before the end of the year, I guess.

Anyone filed a bug @Opera about that ?

[1] <http://www.w3.org/TR/css3-mediaqueries/>
Philippe
---/---
Philippe Wittenbergh
now live : <http://emps.l-c-n.com/>
code | design | web projects : <http://www.l-c-n.com/>
IE5 Mac bugs and oddities : <http://www.l-c-n.com/IE5tests/>

______________________________________________________________________
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/

Reply via email to