about 2 years ago - 45 comments
Internet Explorer sucks so much. It’s terrific. So frustrating. My website looks and runs perfectly fine in every single browser that has ever existed, EXCEPT FOR Internet Explorer!!! It messes up my pages and it’s giving me headaches. Images won’t load, and text is backwards? Lame, just lame. I’m not even going to bother with
about 2 years ago - 8 comments
Internet Explorer aaaaaaarrrrrrrrrrgggggggghhhhh Date: 23 April 2009 Time: 10:44 For the past 15 mins I’ve been sitting in front of my PC starring at the image u can see above. Refresh / Load / Reload / close and reopen – nothing is working seems to work!!! Everytime it’s the same crap! I was logging into
about 2 years ago - 7 comments
To be true am not an expert like some of those who have posted on this blog. Most of the words are too technical for me (like an alien language LOL). But one thing is clear and even a common user like me will understand this: IE SUCKS, it’s dumb and not at all user
about 2 years ago - 2 comments
about 2 years ago - 1 comment
Internet explorer – IE sucks because of many reasons.
about 2 years ago - 9 comments
Dear IE 6, We’ve known each other for 8 years now . We had our good and bad times. Remember those blank night we spend together, you were messing up my css layout and i had to fix it. Hey buddy i think you had your time , now please leave. Sincerely, www.IEsucks.info Wanna say
about 2 years ago - 3 comments
IE SUCKS NEEDS YOUR HELP IE has been found to be the browser that sucks all over the web because of many complaints about its compatibility with web standards and many many other trouble while using internet explorer. IE is violating web standards and now we want it DEAD. The IE sucks campaign is all
about 2 years ago - 3 comments
I didn’t have any particular inclination to be nice to Internet Explorer. And I knew I was going to run into bugs and quirks, none of which would be any different in IE7, because the DOM simply wasn’t on the development radar for that version. Even so, I’ve been nothing short of staggered at the
about 2 years ago - 3 comments
about 2 years ago
WELL , I HAVE USED IE TOO N ZAT 4 A VERY LONG TIME. BUT BASICALLY IT WAS 4SMALL THINGS LIKE SURFING ON THE NET. N EVERYTIME I USED TO EXPLORE A WEBPAGE N CONCURRENTLY WANTED TO OPEN OTHER SITES-EITHER IT CRASHED OR SAID PAGE CANNOT BE LOADED OR THE 1ST SITE COMPLETELY FREEZE-OR 2D PAGE TOOK SO MUCH TIME TO LOAD THAT I HAD TO LEAVE BOTH PAGES N RECONNECT AGAIN.
MY FRIENDS USE TO TELL ME THAT IT WAS CONECTION. LIKE A IDIOT I THOUGHT THEY WERE RIT. I UPGRADED MY INTERNET CONECTION BUT THE PROBLEM WAS STILL THE SAME. FOR YRS I HAD TO BANG MY HEAD EVERYTIME I USED TO SURF. I EVEN STOP USING INTERNET FOR SOMETIMES UNTIL I DISCOVERED THAT THERE WERE OTHER BROWSERS…
YOU CAT IMAGINE HOW I USED TO CURSE IE FOR ALL THE BAD TIME THAT I SPENT B4 MY PC JUSTBCOZ OF ITS INABILITY TO MEET SUCH SMALL REQUIREMENT AS LOADING A PAGE. OR DOING A POSTBACK…
IE NOT OLNY SUCKS IT STINKS ROTTEN.
2D I WORK ON PROGRAMMING PLATFORMS WHEREBY I HAVE TO PUBLISH LOT OF WORKS, BANNERS, WEBPAGES SOMETIMES I HAVE TO CHECK COMPATIBILITY OF SOFTWARE I DEVELOP ON DIFFERENT BROWSERS, AND I CAN TELL YOU IE IS ALWAYS LAST IN THE LIST OR IT DOESOT APPEAR IN THE LIST AT ALL
about 2 years ago
IE Sucks big time with so many features and so less out puts this days other browser are there which are less loaded and open faster
about 2 years ago
wel internt xplorer realy sucks a lot n its da mst damn fuckin browser iv eva knwn. 1 its az slow az a snail n hmm aktually therz nth really gd abt it! dats y most of da tym am uzin mozilla firefox. yeah n in here also we uze dat a lot so ya IE is nt realy functional…
about 2 years ago
IESucks: very much true
Firstly its takes time to load,some of the javascript functions do not even work on IE.
I work in an environment where every day I have to upload and replace web pages.But sometimes IE does not recognize the updates and its quite cumbersome to check each page.
And one thing that irritates me the most is that when you are sending or downloading a file,IE just crash when your work was nearly done.
about 2 years ago
Firefox is better. I hate IE its really so damned shit and boring. Slow creepy just sucks….
about 2 years ago
To be frank i have used IE for quite a long time in the past but i was never satisfied.. Runtime errors and unresponsive windows have always been a headache!
Have to agree that its so full of surprises… Download reaches 99% and BOOM its unresponsive… This happened to me so many times.. Its so discouraging!
Am sure Microsoft also must have been surprised when they discovered what they have developed!
Afterall a bug that calls itself a browser cant be better than this!
about 2 years ago
@GuruDev
IE does not support well the W3C box model(dnt ask y )that y ur box is not the same size.To fix it in IE 6 and 7 use a document type declaration
for centralize ur element by setting the width and margin 0 auto i think it should work in all browser
@Vanessa this refer to the owner of the function we’re executing
but for IE it does a reference of the function and does not copy it so its difficult to know which HTML element is the owner
IE8 still suck
about 2 years ago
Internet Explorer & CSS issues
Trying to get CSS-based websites to look the same across all browsers can often be difficult. Many of the problems however lie with Internet Explorer implementing CSS commands differently to other, more standards compliant browsers. All is not lost, however, as many of the differences you see across browsers are caused by the same Internet Explorer CSS issues…
1. Page elements are narrower in Internet Explorer
Online poll
* Other than calls and text messages, which of the following do you do most often on your mobile/cell phone?
o Download ringtones
o Read news or sport content
o Check your email
o Use social networks (Facebook etc.)
o Use maps or get directions
o Look for local info or transport news
o None of the above
*
(Submit your answer and we’ll show you the results so far)
Perhaps the most famous IE and CSS problem is Internet Explorer’s misinterpretation of the CSS box model, which can cause page elements to be narrower in IE. Every HTML element is essentially a box, the width of which is the total of its margin, border, padding and content area. Imagine the following CSS rule:
div {
margin: 5em;
padding: 4em;
border: 1em solid green;
width: 30em
}
This means that each div is 50em wide in total. This amount is made up of a 30em wide content area, and a 4em padding, 1em border and 5em (invisible) margin on both the left and right sides.
In IE however, the border and padding are included in the width of the content, as opposed to added on. In IE therefore, the width of the content is only 20em (30em less 5em padding and border on either side), and the total width of the div is just 40em.
This CSS box model problem occurs in IE5.x, and can occur in IE6, depending on how you declare the ISO value in the HTML code. There are two ways of doing this:
*
*
The first command is placed on the very first line of the HTML document and the second can be placed anywhere within the . In order for XHTML pages to validate it’s compulsory to use one of these commands. The W3C recommends using the first command as the second will be phased out in the future.
By using the first command however, Internet Explorer 6 will render the CSS box model incorrectly, just like in version 5 browsers. To fix the box model problem, you’ll need to insert a CSS hack to send different width values to different browsers. The CSS hack you use will depend on which ISO value you use, and therefore which versions of IE are rendering the box model incorrectly.
To fix up only IE5.x, use the following CSS commands:
div {
margin: 5em;
padding: 4em;
border: 1em solid green;
width/**/:/**/ 40em;
width: 30em
}
To fix up all versions of IE, use these CSS commands:
div {
margin: 5em;
padding: 4em;
border: 1em solid green;
width: 40em
}
html>body div {
width: 30em
}
(See the article, CSS hacks & browser detection4 for more on these hacks.)
2. Text spilling out of its container in non-IE browsers
Internet Explorer, unlike other browsers, will expand borders and background colours so text doesn’t spill out of its containing element. Take a look at the following example:
Example text
If you’re viewing this in Internet Explorer, the box should look fine. In all other browsers the text is spilling out of the right-hand side of the box. The box has been assigned class=”box” and has the following CSS commands assigned to it:
.box {
width: 40px;
border: 2px solid #781351;
padding: 3px;
background: #d7b9c9;
white-space: nowrap
}
Non-IE browsers will adhere to the width: 40px CSS command, which is why the box doesn’t expand in these browsers. IE instead interprets width as min-width, and therefore expands the box to fit the text (the same applies with height and min-height).
To ensure the text doesn’t spill out of the box in all browsers, you’ll need to use the following CSS rule, in addition to the first one:
html>body .box
{
width: auto;
min-width: 40px
}
IE will ignore this CSS command, as the command has html>body at the front of it (see the article, CSS hacks & browser detection4 for more on this). As such, this CSS command is only for non-IE browsers. The first CSS rule, width: auto, cancels out the original width rule. The second command, min-width: 40px then assigns a minimum width to the box, so the box will always expand to fit the text.
Check out the box again (you won’t see any difference in Internet Explorer, so open this up in another browser to see the change):
Example text
Much better!
3. Disappearing background images
IE has a very freaky bug where it likes to make background images (and sometimes even text – particularly if there are floated elements around) disappear. This often happens when you scroll up and down on a web page and you can usually make the background re-appear by refreshing the page.
Obviously you won’t want your site visitors to have to refresh a page to see a background image in full! A freaky solution to this freaky problem is to insert the CSS command, position: relative into the CSS rule containing the background image:
.foo {
background: url(filename.jpg);
position: relative
}
Occasionally this won’t work, so another solution is to assign a width or a height to the element with the background image. You may not want to assign a height or width, so a solution is to assign a height of 1% for Internet Explorer. Because IE interprets height as min-height (see point 2 above) this CSS rule won’t affect the appearance:
.foo {
background: url(filename.jpg);
height: 1%
}
html>body .foo {
height: auto
}
The height: 1% CSS command is cancelled out by the height: auto CSS command. Internet Explorer doesn’t understand html>body, so by inserting this in front of the second CSS rule this whole CSS rule is ignored by IE.
4. Widths only working on IE
Every HTML element is either a block or an inline element. Examples of block elements include , , , and . Example of inline elements include , , , and .
One of the characteristics of inline elements is that you can’t change the width of an inline element. The following CSS rule shouldn’t, in theory, work:
span {
width: 100px
}
This CSS rule won’t work, except in Internet Explorer where each span will now have a width of 100px. In every other browser however, the width of the span will simply be the width of the number of characters contained in the element. The solution? Make the span a block level element:
span {
width: 100px;
display: block
}
(Turning the span into a block element will make the width command work in every browser, but it will also make the span begin on a new line. To combat this, you could assign float: left to the span.)
5. Unstyled version of web page appearing in IE
When your website loads up in Internet Explorer, does an unstyled version of the page appear for a second or two, before the styled version kicks in this? If so, your website may be suffering from what’s known as the Flash Of Unstyled Content5 (or FOUC).
If you’re using the @import directive (e.g. @import “styles.css”;) to call up your CSS file then this phenomenon may be happening on your website in IE. It’s weird, there’s no logical explanation for it, but this problem obviously needs to be fixed.
The simple solution to this illogical problem is an equally illogical solution – insert either a link or a script element into the header:
*
*
It doesn’t matter which one you insert (or even if you insert both). If you provide a print stylesheet, using the link element to reference it (as indicated in the example above), then you’ll never see the FOUC phenomenon.
6. Fixed width web page not sitting in centre of window
Got a fixed width website and can’t get it to centrally align in the window in Internet Explorer? Or you can get it to centrally align in IE but not in any other browser? Fear not, it’s not your fault! Unfortunately, the correct way of centrally aligning content through CSS doesn’t actually work in IE:
#container {
width: 770px;
margin: 0 auto
}
The second command, margin: 0 auto, basically gives our containing element an automatic margin on the left and right, thereby positioning the containing element in the centre of the browser window.
IE however, will need slightly different commands to make this work:
body {
text-align: center
}
#container {
width: 770px;
margin: 0 auto;
text-align: left
}
This will then centrally align the container in IE too. To prevent the text from centrally aligning too, we insert text-align: left into the container div.
about 2 years ago
I’ll tell you what;s wrong with IE….
1. It causes problem that you won’t even imagine can occur… The most F*****G one
2. It can crash anytime without knowing why
3. Regarding javascript, a function declared globally cannot be access its variable using the keyword this, the status bar will keep on displaying “Done, but error on page”
4. In case of any problem you refer to MS, the only solution is the following:
“Upgrade to IE 8″ which mean replace shit with shit lollll