以 MVC3 形式并排显示两个文本框

发布于 2024-12-20 19:57:04 字数 58 浏览 0 评论 0原文

我希望在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帝王念 2024-12-27 19:57:04

如果您使用了脚手架视图,则默认的 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.

木槿暧夏七纪年 2024-12-27 19:57:04

由于它们是内联元素,因此您将使用相同的原则来确保两个图像保持在同一行上。

  • 不要换行或将它们放在单独的块元素中。
  • 通过保持它们的尺寸足够小,确保有足够的空间容纳它们。

Since they are inline elements, you would use the same principles as making sure two images remain on the same line.

  • Don't line break or have them in separate block elements.
  • Make sure there is room enough for them, by keeping their size small enough.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文