GitHub布局使用这样的结构来保护表单的CSRF(例如,可以在主页上的注册表单中看到):
折叠< input type =“hidden”...>的原因是什么?内联样式< div> ;?
不是那个< div>多余?
最佳答案
如下所述:LINK
Rails’ form tag helper helpfully puts a hidden field in with an authenticity token. Unfortunately,it wraps the hidden field in a div! So even if your form has style=”display:inline”,the div won’t.. and you won’t be able to display a form that doesn’t force a newline.
换句话说,防止换行的最安全方法是添加那些样式margin:0; padding:0; display:内联到包装器div.
原文链接:https://www.f2er.com/css/427533.html