2

ここで問題のデモを作成しました: http://jsfiddle.net/XwCBa/

ここのフォームはメールアドレスとパスワードを要求し、その下には「記憶する」チェックボックスと「パスワードを忘れた」リンク (ボタン) があります。

これが私の問題です-「パスワードを忘れた」リンクはチェックボックスのにあります。チェックボックスと同じ行に配置し、右揃えにする必要があります。

私はしばらくの間、これを探し回っていましたが、必要な場所に「パスワードを忘れた」リンクが表示されないようです。助言がありますか?

<div class="controls controls-row">
  <label class="checkbox span4"><input type="checkbox" id="inlineCheckbox1" value="option1"> Remember me for 2 weeks</label>
  <button type="button" class="btn-link span2">Forgot Password?</button>
</div>
4

2 に答える 2

0

Ah, thank you Skelly. Actually I modified your code a bit by moving the pull-right to the "forgot password" link, that way they both align where they should be. But that was basically the answer, to put them both in the label.

<div class="control-group">
    <div class="controls controls-row">
        <label class="checkbox"> <input type="checkbox" id="inlineCheckbox1" value="option1"> Remember me for 2 weeks  <button type="button" class="btn-link pull-right">Forgot Password?</button></label>
    </div>  
</div>  
于 2013-05-13T18:21:00.647 に答える