And lets get firefox's MAJOR memory and CPU hogging issues sorted so it's a much less evil alternative (dont get me wrong i still love and use firefox, but why does it need to be such a resource bitch?)
Firefox only slows down when you load it up with extensions.
It's a resource hog whatever though. That's the only thing I don't like. Opera is nice and quick but I just couldn't get to grips with it as it were.
As for IE. That browser pisses me off. Even with tabs.
Now, the "max-width" expression works great in Firefox, and the "expression(Math.min(this.width, 440) + "px"); " seems to work in IE, but only some of the time! (I have tried the same expressions under just ".img" and ".body img" - no difference.)
Half the time when the page loads up a selection of images on screen have been shrunk down to 41 pixels wide. What the hell is going on?
I have never seen this happen anywhere else. Is this a clash in Vanilla or an attempt by IE to make me go insane?
.Comment img {
width: 90%; // or something like that. That will be a bit smaller than the window width of the .Comment area
}
It may look as though that would make the width of the image 90% of the images width, but it actually sets it to 90% of the element width the image is nested in (in this case, the .Comment).
Comments
.Comment img {
width: expression(Math.min(this.width, 440) + "px");
max-width: 440px;
height: auto;
}
Now, the "max-width" expression works great in Firefox, and the "expression(Math.min(this.width, 440) + "px"); " seems to work in IE, but only some of the time! (I have tried the same expressions under just ".img" and ".body img" - no difference.)
Half the time when the page loads up a selection of images on screen have been shrunk down to 41 pixels wide. What the hell is going on?
I have never seen this happen anywhere else. Is this a clash in Vanilla or an attempt by IE to make me go insane?
Cheers
.Comment img { width: 90%; // or something like that. That will be a bit smaller than the window width of the .Comment area }
It may look as though that would make the width of the image 90% of the images width, but it actually sets it to 90% of the element width the image is nested in (in this case, the .Comment).
Give that a go.