我正在尝试使用CSS margin属性来更改日历组件的位置。
<p style="margin-top: 10px; margin-left: 100px">
<p:calendar value="#{calendarBean.date1}" mode="inline" id="inlineCal"/>
</p>
margin-top正在运作, 但是保证金没有。
如何在水平方向上移动日历组件?
答案 0 :(得分:1)
您可以尝试使用
而不是margin-left ...
试试这个
<p style="margin-top: 10px; margin-left: 100px !important">
它可能对你有帮助
答案 1 :(得分:1)
How can I move calendar component in horizontal direction?
使用CLAS float
属性。即:float : left ;