'thisisunsafe' equivalent for Firefox and Safari - google-chrome

Is there any keyword for Firefox and Safari browsers to achieve same thing with thisisunsafe on Chrome?

Related

Scroll Bar Design

I want to do the styling of scroll bar. It's working in chrome but it isn't working in Firefox. How do I solve this?
As you will have found the code for custom scrollbars is ::-webkit-scrollbar using the webkit system
Unfortunately not all browsers support webkit, you'll find Webkit works on browsers such as Chrome & Safari but Firefox uses -moz and I.E. uses -ms. Because of this, scrollbar design will work on webkit browsers only. There is no -moz or -ms equivalent.
You can read more on the Mozilla Developer pages about scrollbar design

Is Safari falls under which browser category?

The Browser Safari falls under Webkit or not? Please do clarify my doubt at the earliest. If it is not falls under the category of Webkit, what steps would I take to write in CSS. I mean the syntax of CSS for Safari Browser Like -moz for Filezilla and -webkit for Chrome?
Safari is webkit based. In fact safari was the first browser to use webkit and the open source it. The -webkit should work.
You can read more here:
http://en.wikipedia.org/wiki/Safari_(web_browser)
http://www.webkit.org/

-ms-touch-action equivalent for other browsers

In order to make touch screen friendly website IE supports
canvas {
-ms-touch-action: double-tap-zoom;
}
Is there any equivalent to be used with other browsers like chrome, Firefox, opera and safari?
Chrome is shipping support for touch-action in Chrome 35: http://blog.chromium.org/2014/04/chrome-35-beta-more-developer-control.html
There is no other way of implementing this in other browsers, see Krazers answer to this.
https://stackoverflow.com/a/10291359/1977007

disable ime mode in google chrome

How to disable IME using css or anyother method ?My problem is that,When change language to japanese,Double byte numbers are entered in text box,I need to prevent this
I use
style="ime-mode:disabled"
It works all other browsers except google chrome.
change the attribute type to tel. It works just like ime-mode is inactive in chrome and other browsers supports html5.
element.setAttribute('type', 'tel');
I recommend you to use both ime-mode and type="tel"
style: ime-mode
Chrome Firefox (Gecko) IE Opera Safari (WebKit)
Not supported 3.0 (1.9) 5.0 Not supported Not supported
input type="tel"
Chrome Firefox IE Opera Safari Safari Mobile
6+ 4+ 10+ 10.6+ 5.1+ iOS 3.1+
Using Both
Chrome Firefox IE Opera Safari Safari Mobile
6+ 3.0 (1.9) 5.0 10.6+ 5.1+ iOS 3.1+

Is css3 -ms-flex available on non MS browsers?

I am doing some videos from Microsoft Virtual Academy and stumbled upon -ms-flex or so called Flexbox in css3.
I would like to implement a web app on html5 and css3 and this -ms-flex would help me very much.
Is this available in webkit or fennec based browsers on mobile devices?
If this can be used, are there any limitations of use?
Also are there any equivalent for those browser if that is not supported?
I found that : safari has webkit-box and maybe there are others for the rest of the browsers(Opera, Chrome and Mozilla or Dolphin)
Alright, extending from comment:
According to can_i_use, You can use flex box on many modern browsers with proper prefix:
WebKit browsers (Chrome, Safari, Android stocked browser, Chrome for Android, iOS Safari) with -webkit- prefix;
Gecko/Fennec browsers (Firefox, Firefox for Android) with -moz- prefix;
Trident browsers (IE 10) with -ms- prefix;
Presto browsers (Opera desktop) without prefix.
You should be able to find some tutorial/example on MDN, or (as usual) Google.