filter: blur(1px); doesn’t work in Firefox, Internet Explorer, and Opera

Try with SVG filter. img { filter: blur(3px); -webkit-filter: blur(3px); -moz-filter: blur(3px); -o-filter: blur(3px); -ms-filter: blur(3px); filter: url(#blur); filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=”3″); } <img src=”https://i.stack.imgur.com/oURrw.png” /> <svg version=”1.1″ xmlns=”http://www.w3.org/2000/svg”> <filter id=”blur”> <feGaussianBlur stdDeviation=”3″ /> </filter> </svg>

what input field type forces the number pad mobile keyboard to come up when focused?

Use pattern=”[0-9]*” Example number input: <input type=”number” pattern=”[0-9]*” /> Example phone input: <input type=”tel” pattern=”[0-9]*” /> Note: Browsers that do not support type=”tel” will default to a text type Beware: Using type=”number” can cause problems with some browsers and user experience for credit card, postal code, and telephone inputs where a user might need to … Read more

Wingdings font family does not seem to work on Firefox and Opera

Mozilla and Opera are standard-compiliant. Wingdings is not standard (what a surprise coming from Microsoft) because not mapped to Unicode, and so should never be used on a website. However, do not despair, most symbols are available in Unicode : check http://www.alanwood.net/demos/wingdings.html Important addendum (october 2014) : As of Unicode v7, released on June 16, … Read more

Red warning message in Opera console

Based on answer by @SesameTastelikecheese. This guide is much simpler.Fixes bug: Extension would only work if console panel was opened first. Always works now. CREATE AN EXTENSION TO KILL OPERA CONSOLE WARNING This will allow Opera to continue to be updated (good for security) and allow you to use the latest programming language features released … Read more

tech