如何在文本旁边放置HTML表单?

时间:2014-03-10 22:48:27

标签: html forms jsf

这是我的代码:

Topic one: <h:form> <h:commandButton value="+" /> <h:commandButton value="-" /> 
</h:form>

我希望+-按钮位于文字Topic one:旁边的同一行。

2 个答案:

答案 0 :(得分:0)

在表单上使用这样的css类:

.your-class {
    display: inline;
}

答案 1 :(得分:0)

使用<h:panelGroup>包裹您的按钮:

<h:panelGroup>
    <h:commandButton value="+" /> <h:commandButton value="-" />
</h:panelGroup>