This question already has answers here: Why do browsers create vendor prefixes for CSS properties? (2 answers) Closed 2 years ago. -webkit-column-count: 3; -webkit-column-gap: 10px; -webkit-column-fill: auto; -moz-column-count: 3;...
I know that in Safari on an iPhone you can detect the screen’s orientation and change of orientation by listening for the onorientationchange event and querying window.orientation for the...
I spent quite a lot of time trying to figure out why video embedded like here: <video height="256" loop autoplay muted controls id="vid"> <source type="video/mp4" src="https://stackoverflow.com/questions/17994666/video_file.mp4"></source> <source type="video/ogg" src="video_file.ogg"></source>...
I have a site which is primarily for mobile users but desktop too. On Mobile Safari, using <input type="number"> works great because it brings up the numerical keyboard on...
Is it possible to use CSS3 transition animation on page load without using Javascript? This is kind of what I want, but on page load: http://rilwis.googlecode.com/svn/trunk/demo/image-slider.html What I found...
I have some trivial JavaScript to effect a style change: sel = document.getElementById('my_id'); sel.className = sel.className.replace(/item-[1-9]-selected/,'item-1-selected'); return false; This works fine with the latest versions of FF, Opera and...
I am trying to print a page. In that page I have given a table a background color. When I view the print preview in chrome its not taking...
I am looking for an equivalent in Chrome to the “break on all errors” functionality of Firebug. In the Scripts tab, Chrome has a “pause on all exceptions”, but...
I am creating a jQuery plugin. How do I get the real image width and height with Javascript in Safari? The following works with Firefox 3, IE7 and Opera...
I want to have a vertical menu with a specific height. Each child must fill the height of the parent and have middle-aligned text. The number of children is...