html – 用div隐藏的折叠输入类型

前端之家收集整理的这篇文章主要介绍了html – 用div隐藏的折叠输入类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

GitHub布局使用这样的结构来保护表单的CSRF(例如,可以在主页上的注册表单中看到):

折叠< input type =“hidden”...>的原因是什么?内联样式< div&gt ;?
不是那个< 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

猜你在找的CSS相关文章