IE6 why do you mock me!
Just found IE6 was doing things to images which it shouldn’t actually be doing. Seems IE didn’t like flickr’s embed code and would squish and stretch images.
18th February
Just found IE6 was doing things to images which it shouldn’t actually be doing. Seems IE didn’t like flickr’s embed code and would squish and stretch images.
21st January
Congratualtions to SOAP Creative making it to the final round for the 14th AIMIA Awards for the xSeries websites for Three. They’re unstoppable.
I had the honor of working with SOAP on this project on the xhtml/css development.
21st November
Specific Seperation
* html selector { propert\y: value} /* IE6 seperation */
*+ html selector { property: value} /* IE7 seperation. Must use if you need to target IE7 specifically */
::root selector { property: value} /* safari (untested in the 3 beta) */
The all in one
selector {
property: value; /* IE5+ can see this */
propert\y: value; /* IE6+, Safari, FF */
_property: value; /* IE6+ */
*property: value; /* IE6+ if css validation to makes you tingle */
}
IE5 for OS9
IF you need to seperatte IE5 on the mac (fuck knows why you’re still developing for this. Its time to trim the fat don’t you think?) use this;
* html selector{
propert\y /**/: value;
}
*Note: When you use the backslash propert\y:value; you can only ever put it after any letter thats after G