gpt4 book ai didi

css - (Rails) 单选按钮不与文本对齐

转载 作者:太空宇宙 更新时间:2023-11-04 10:04:06 25 4
gpt4 key购买 nike

我希望 ff.labelff.radio_button. 对齐,但现在我的 View 中它们相距甚远且未对齐。为什么? enter image description here我已经为这个问题添加了一个 css 标签,以防万一它是 css 而不是 rails 的问题。

这是我的代码:

<%= form_for([@user, @submitted_quiz]) do |f| %>
<%= f.hidden_field :quiz_id, :value => @quiz.id %>
<%= f.hidden_field :name, :value => @quiz.name %>

<% @quiz.questions.each do |question| %>
<div class = "questions" >
<%= f.label question.content %>

<%= f.fields_for (:submitted_answers) do |ff| %>

<%= ff.hidden_field :question_id, :value => question.id %>
<div class = 'options'>
<% question.answers.each do |answer| %>
<div class = 'radio'>
<%= ff.radio_button :content, answer.content %>
<%= ff.label :content, answer.content %>

</div>
<% end #answer.each do %>
</div>
<% end #fields_for (:submitted_answers) do %>

</div>
<% end #questions.each do %>


<%= f.submit %>
<% end #form_for %>

最佳答案

将单选按钮放在标签内并尝试。

<div class="radio">
<%= ff.label :content do %>
<%= ff.radio_button :content, answer.content %>
<%= answer.content %> <!-- this will make the text appear after the radio button -->
<% end %>
</div>

更新:

像这样

<label>
<input type="radio" ... />
Foo
</label>

此处 Foo 将出现在单选按钮之后,而不是之前。

关于css - (Rails) 单选按钮不与文本对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38154098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com