internet-explorer-8

Remove the bottom border of a div table

杀马特。学长 韩版系。学妹 提交于 2019-12-12 01:44:35
问题 I'm trying to display some images in a div table, but I keep getting the border on the bottom of each image. It's about 2-5 pixels. I'd send an image, but I'm a new user. I want to remove this border. The image is 52 x 10 exactly. I'm only in IE8 for this app. edit : I'm doing a larger layout- I just boiled the code down to the single problem I'm having, which is the border at the bottom of the table. /*tables*/ .WorkFlowTableStyleA { display: table; width: 10px; border-collapse:collapse;

jQuery .animate() marginLeft not working in IE8 and below - invalid argument

瘦欲@ 提交于 2019-12-12 01:39:27
问题 I have an IE specific problem. On the bright side it works well on all other browsers. The problem occurs when clicking the .close_button_page image which should perform the simple animate function, moving the div to the left. In IE 8 and below, it simply says invalid argument in the console. I have found issues like this online but none address the problem. Note: There are many other IE bugs ( z-index etc) at the moment so please ignore that. HTML: <div id="content-left"> <img class="close

CSS3Pie with Angularjs - The effects of CSS3Pie are applied only to first element when using ng-repeat directive

不打扰是莪最后的温柔 提交于 2019-12-12 01:23:30
问题 Our Web application is built with Angularjs. I have a HTML page in which I am building a table with several rows using the ng-repeat directive. Each row contains a button. Buttons have rounded corners and gradient color. We have to support IE8 therefore I have decided to take advantage of CSS3Pie in order to achieve the same look&feel as in modern browsers. I am using the htc file (not the js version) and everything went well until I got that issue with the ng-repeat. Only the button in the

window.execScript fails in ie8

浪尽此生 提交于 2019-12-12 01:07:56
问题 I work in ruby on rails (3.2.11) with jquery 1.9.1... in my app I developed a chat in javascript. With IE9 all is ok, in IE8 when calling function refresh_contacts() { url = $('#refresh_contacts_url').val() $.ajax(url) } I get the error in the subject... I tried to isolate the problem and it seems it's the ajax call (just the call, even if there is no code on the called function, so I think it's the call itself who raise the problem)... The code which raise the error (as indicated by the IE

How to animate background position in IE8?

心已入冬 提交于 2019-12-12 01:06:07
问题 I have a problem in IE8 with an animation effect. The code works in firefox, safari, chrome... but no in IE8. The demo is here. The code I'm using is: $(function(){ $("#wrapper").animate({ backgroundPosition: "-261px center" }, 12000 ); }); I'm using jquery-1.4.3.min.js Is there a way to make it work in IE8? --- UPDATE --- i've created this fiddle and now it works¿?¿?¿ I havent changed nothing.Just copied the fiddle source frame and saved as index3.html and works. I don't understand nothing,

Custom fonts not working in ie 8 and below

放肆的年华 提交于 2019-12-12 00:24:06
问题 My custom fonts aren't rendering in ie8. I've allready tried clearing the cache, and I'm also sending the correct filetypes if I'm not mistaken. What am I missing here? @font-face { font-family: 'Lobster'; src: url('fonts/lobster.eot'); src: url('fonts/lobster.eot') format('embedded-opentype'), url('fonts/lobster.woff') format('woff'), url('fonts/lobster.ttf') format('truetype'), url('fonts/lobster.svg#Lobster1.4Regular') format('svg'); } .logoHome{color:#FFF; font: 58px Lobster, serif; text

HR Margin issue with IE6, IE8 & FF

只谈情不闲聊 提交于 2019-12-11 23:48:16
问题 HI , I am getting Gap(some white space) between the <HR> & <TABLE> tags in IE6. But the same code is working differently in IE8 & FF. Here is the my sample code. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> <style> * { margin: 0px; padding: 0px; } </style> </head> <body> <div style="display: inline; height: 100%;" id=

Errors loading wordpress website on Internet Explorer 8

℡╲_俬逩灬. 提交于 2019-12-11 23:38:58
问题 My website - http://www.myhomecare.ie - is a Wordpress Installation using the Sterling theme which is compatible with IE 8 and 9. Everything was running fine and looking good when I tested it in an IE 8 browser but its suddenly started throwing errors and displaying the menu vertically instead of horizontally in IE. I contacted the support supplied by the theme makers but they have reported that it looks fine in their IE browsers. Thinking it might just be my computer I tried it out on other

IE8, XHTML, position: fixed; and z-index

删除回忆录丶 提交于 2019-12-11 23:32:04
问题 I have an XHTML 1.0 transitional Doctype. I have a <div> that is position: fixed; bottom: 0px; left: 0px; width: 100%; z-index: 200; . Inside that <div> I have two buttons which are position relative, aligned right, with a set z-index of 201; In Firefox the bar at the bottom and the two buttons are correctly located at the bottom. In IE8 however, the bar is visible and the z-index appears to be overlaying the other content, but the buttons are hidden behind the main div, despite being

Image width after load returns 0

∥☆過路亽.° 提交于 2019-12-11 22:31:19
问题 Can someone help me figure out what I'm doing wrong here? IE8 returns 0 for the width of these images regardless. Works fine everywhere else. $('#hometown li img').load(function() { var imgWidth = parseInt($(this).width()); var percent = (99.99 * (imgWidth / 1600)) + '%'; console.log(imgWidth) // <- Always 0 in ie8 $(this).parent().css({ 'width': percent }); }); 回答1: Try attaching a native onload to each image seperately instead, and trigger the onload if the complete property is true to