以 MVC3 形式并排显示两个文本框
我希望在 MVC 视图中并排排列两个文本框,作为表单的一部分。如何使两个文本框出现在视图内的同一行中?
I'm looking to arrange two textboxes side by side in an MVC view, as part of my form. How do I get the two textboxes to appear in the same line inside the view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用了脚手架视图,则默认的 MVC 样式表将在彼此之下包含元素。
对元素应用左浮动将使它们并排。
使用您选择的浏览器的检查元素来查找要应用样式的 div 的 id 或类。
The default MVC style sheet will have elements under each other if you have used a scaffolded view.
Applying a float left to your elements will have them side by side.
Use your browser of choice's inspect element to find ids or classes of div to apply style to.
由于它们是内联元素,因此您将使用相同的原则来确保两个图像保持在同一行上。
Since they are inline elements, you would use the same principles as making sure two images remain on the same line.