私のHTMLドキュメントには、メッセージとラジオボックスがあります。両方を並べて表示したい。メッセージは左、上揃え、ラジオボックスは右、上揃え。コンテナにCSS"display:inline"を使用してみましたが、機能しませんでした。コードは次のとおりです。
HTML:
<div id="test-div">
<p>Current time: <span id="current-time"></span></p>
<fieldset id="fieldset-options">
<legend>My Options</legend>
<input id="opt1" type="radio" name="grp-options" value="1">
<label id="label-opt1" for="opt1">First Option</label><br/>
<input id="opt2" type="radio" name="grp-options" value="2">
<label id="label-opt2" for="opt2">Second Option</label><br/>
<input id="opt3" type="radio" name="grp-options" value="3">
<label id="label-opt3" for="opt3">Third Option</label><br/>
</fieldset>
</div>
CSS:
#test-div {
font-size : 18px;
font-weight: bold;
margin-bottom: 20px;
position: relative;
//display: inline;
}
#test-div #fieldset-options legend {
font-size: 16px;
font-weight : bold;
}
#test-div #fieldset-options {
font-size : 14px;
font-weight: normal;
width: 350px;
position: absolute;
right: 0px;
}
これはjsfiddleリンクです。これを正しく配置する方法を教えてください。</ p>