form-control 总是会换行,后面加单位的时候很难看,如下图。
1 <div class="col-sm-3"> 2 <input id="investAmount" name="investAmount" class="form-control" required th:field="*{investAmount}" type="text"> 3 <select name="unit" class="form-control" th:field="*{unit}" id="unit" > 4 <option value="万元">万元</option> 5 <option value="亿元">亿元</option> 6 </select> 7 </div>
尝试了多种方法,终于发现 在外框里加入 form-inline就可完美解决。
1 <div class="form-inline col-sm-3"> 2 <input id="investAmount" name="investAmount" class="form-control" required th:field="*{investAmount}" type="text"> 3 <select name="unit" class="form-control" th:field="*{unit}" id="unit" > 4 <option value="万元">万元</option> 5 <option value="亿元">亿元</option> 6 </select> 7 </div>
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步