Cross-browser development refers to the practice of building web sites, web applications, libraries, or components so that they function across different web browsers and rendering engines.
0
votes
0answers
39 views
Image looks different on different computers
I have a problem with my blog where it looks different on other computers (I tested with 4). To be specific, there are two images affected, and they look like this in the code:
...
0
votes
3answers
37 views
Html tags hidden attributes [on hold]
I have a problem that all people have when they do html on different browsers. It doesn't render as expected in all browsers.
I notice that it will render the same in all browsers if you specified ...
0
votes
0answers
4 views
Safari Won't Show BG on the body without a html background color set
Maybe someone out there can fill me in on whether I've encountered an odd edge case Safari bug or there was something that I missed in my CSS.
Basically, the landing page of my site ...
-2
votes
2answers
21 views
how to get an alert to fire in an unload function in chrome
I see that Chrome doesn't allow alerts in an unload function
$(window).on('unload', function(){
alert("ciao");
});
But then how does JSFIDDLE do it?
In dev tools I can see I can tick a box ...
0
votes
0answers
16 views
Cross-Browser JS elements
I've tested this code in Firefox 22, Opera 12.12, Chrome 28.0.1500.95 m, and IE 8.0.6001.18702. All in Windows XP 32 bit. I am just wanting to know if there are any cross-browser or cross-OS issues ...
0
votes
1answer
55 views
CSS alignment cross browser
I've created a counter with 4 digits, which need to be displayed in the bottom right corner of the page. Each digit has a block-image as 'background'.
It works in chrome, but not in IE7+ and FF..
...
0
votes
2answers
32 views
background-size in different browsers
I have some difficulties showing a scaled background on different browsers. I created the website on a Google chrome browser, but when loading the site on a iPhone or earlier version of IE, the ...
2
votes
2answers
24 views
Setting style attributes dynamically and consistently between Chrome & FF
Check out http://jsfiddle.net/HW64y/
<div id='box' class='frustratingBox'></div>
.frustratingBox{
border:5px solid;
border-color: #000000;
border-radius:25px;
...
0
votes
1answer
16 views
Bootstrap versions and browser compatibility
We are currently developing an application that will have to run on older corporate PCs that still have IE6 installed.
I have been looking around a bit, but I cannot find a clear answer for the ...
4
votes
5answers
95 views
+300
100% min-height working in Opera, but not in other browsers
Here's the code I'm using:
html,body{
height: 100%;
}
div{
min-height: 100%;
height: auto !important;
height: 100%; /* this is for older IE */
}
http://jsfiddle.net/YYcLJ/
...
2
votes
2answers
1k views
jQuery flicker when using animate-scrollTo
I have a problem with the scrollTo function when it is called by a jQuery animate function.
Here my code:
$("#button").click(function(){
$("body").animate({scrollTop: 1400},"slow");
});
When ...
87
votes
6answers
38k views
What is clearfix?
Recently I was looking through some website's code, and saw that every <div> had a class clearfix.
After a quick Google, I learnt that is is for IE6 sometimes, but what actually is clearfix? ...
-1
votes
1answer
245 views
default browser path in different OS
I need the browser path that depend on different OS .
For example ,
in Win7 , Firefox's path might be
C:\Program Files (x86)\Mozilla Firefox\firefox.exe
Chrome might be
...
61
votes
17answers
37k views
How can I prevent the backspace key from navigating back?
On IE I can do this with the (terribly non-standard, but working) jQuery
if ($.browser.msie)
$(document).keydown(function(e) { if (e.keyCode == 8) window.event.keyCode = 0;});
But is it ...
958
votes
17answers
305k views
CSS rule to disable text selection highlighting
For anchors that act like buttons (for example, Questions, Tags, Users, etc. at the top of the Stack Overflow page) or tabs, is there a CSS standard way to disable the highlighting effect if the ...