closuresHTML / CSS的Chrome / Safari拼写检查

有没有一种方法让Web开发人员closuresChrome / Safari / WebKit对特定inputtextarea元素的拼写检查? 我的意思是通过特殊的标签属性或专有的CSS指令。

有一个关于input s的closures的CSS指令,所以我认为也可能存在。 我知道用户如何做到这一点。

或者,作为一个用户,我可以禁用它的某些特定的域名?

是的,这里有HTML5的spellcheck属性。

<textarea spellcheck="false"><input type="text" spellcheck="false">

http://www.whatwg.org/specs/web-apps/current-work/multipage/editing.html#spelling-and-grammar-checking

更新:现在,所有浏览器的最新版本都支持此function。

这在Safari 7.1中工作,也应该在其他工作:

 <input autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/> 

只有spellcheck="false"不起作用。

对于一个表单的所有元素,这是可能的,所以:

 <form spellcheck="false" .. /> 

关于input标签的概述:不要这样做,这是用户的视觉提示。

但是,如果您必须:

 #your-input{outline:none;}