我有4个按钮。其中3个被隐藏,直到按下一个按钮。问题是我把按钮放在div类中。这会强制按钮位于第一个按钮下方。 (见下文)
我想让按钮排成一行,(如果可能的话,希望在点击之后禁用,但可能会在另一天停用)而不是让按钮位于彼此之下
图表时间!
按钮目前是这样的
- - - -
我希望他们像
<div class="row-fluid" style="margin-bottom: 20px">
<%= link_to 'Comm invoiced out Venue', admin_conference_statuses_path(conference_id: @conference.id), class: "btn btn-primary", method: :post, remote: true %>
<div id="conf_status_buttons">
<% if @conference.conference_status %>
<%= link_to 'Cross charged to Client', admin_conference_status_path(id: @conference.conference_status, status_name: 'cross_charged_use'), class: "btn btn-primary", method: :put, remote: true %>
<%= link_to 'Payment received Commission', admin_conference_status_path(id: @conference.conference_status, status_name: 'payment_received_comm'), class: "btn btn-primary", method: :put, remote: true %>
<%= link_to 'Payment Received', admin_conference_status_path(id: @conference.conference_status, status_name: 'payment_received'), class: "btn btn-primary", method: :put, remote: true %>
<% end %>
</div>
目前在ID的div标签中,因为ID链接到别处
DisplayMetrics dmetrics = new DisplayMetrics();
int widthPixels=dmetrics.widthPixels;
int heightPixels=dmetrics.heightPixels;
//setting the height of the button
button_nextPuzzle.setMinHeight((int) ((heightPixels/3)*.30));
答案 0 :(得分:0)
看起来你的造型已关闭,请在你的css中试试
#conf_status_buttons { position: relative; float:left; }
答案 1 :(得分:-1)
我在想像div id =“btn” 在这个div中,您可以使用按钮并在操作中运行一个脚本,将id =“btn”更改为所有按钮。 这将使他们排成一行。
我想。
我目前正在打电话,因此很难准确写出我的意思。
编辑:我的代码隐藏在论坛上