简单的问题,无疑是一个简单的解决方案——尽管搜索了 SO 和 Google 一段时间,但我还是很难找到它。
我要做的就是获取文本片段“我对增强的列表或高级配置文件感兴趣,(我们团队的成员将及时回复更多信息) ”并将其与支票的右侧对齐框(文本左对齐),但不像现在这样环绕它。
这是我的JSFiddle
代码(使用 PureCSS 进行样式设置):
<form class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="name">Product Name</label>
<input id="name" type="text" placeholder="Username">
</div>
<div class="pure-control-group">
<label for="password">Contact Name</label>
<input id="password" type="text" placeholder="Password">
</div>
<div class="pure-control-group">
<label for="email">Contact Email</label>
<input id="email" type="email" placeholder="Email Address">
</div>
<div class="pure-control-group">
<label for="foo">Website</label>
<input id="foo" type="text" placeholder="Enter something here...">
</div>
<div class="pure-control-group">
<label for="foo">Description:</label>
<textarea id="description" type="text" placeholder="Enter description here..."></textarea>
</div>
<div class="pure-controls">
<label for="cb" class="pure-checkbox">
<input id="cb" type="checkbox">
I'm interested in an enhanced listing or premium profile, (a member of our team will respond promptly with further information)
</label>
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
任何帮助将非常感激。谢谢。