正确的 CSS 以按特定顺序显示 html 表单元素?
<input type="checkbox" ID="RecquireFacebookInvitesCB" />Require
<select>
{section name=foo start=5 loop=50 step=1}
<option value="{$smarty.section.foo.index}">{$smarty.section.foo.index}</option>
{/section}
</select>
this many Facebook invites before entering sweepstakes
我有上面的 html(带有 smarty-php 格式标记),它生成两个表单元素和一些文本,如下所示显示在我的屏幕截图中。我想将此显示为:
[CHECKBOX] Require [SELECTION LIST] Facebook invites before entering sweepstakes
我对如何实现它有自己的想法,但我想知道最好的方法是什么。谢谢!
<input type="checkbox" ID="RecquireFacebookInvitesCB" />Require
<select>
{section name=foo start=5 loop=50 step=1}
<option value="{$smarty.section.foo.index}">{$smarty.section.foo.index}</option>
{/section}
</select>
this many Facebook invites before entering sweepstakes
I have the above html (with smarty-php formatting tags) that produces two form elements and some text as displayed in my screen shot. I'd like to make this display as:
[CHECKBOX] Require [SELECTION LIST] Facebook invites before entering sweepstakes
I have my own ideas on how to implement this but I'm wondering what the best approach would be. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将您的代码更改为:
Try changing your code to this: