Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変更できない次のHTML出力があります。テキスト(名前など)の幅と右揃えのテキストを指定したいのですがlabel、出力を変更できないため、変更できません。HTMLを変更せずにそれを行うことはまだ可能ですか?
label
<label>Name:<br><input type="text" value="" name="name"></label>
PS。ラベルテキストと入力フィールドを同じ行に表示したいので、を設定float: leftしました<br>。
float: left
<br>
に設定BRするだけdisplay: none;で、すべてが同じ行に表示されます。inputタグにテキストの配置を設定することもできますtext-align: right。
BR
display: none;
input
text-align: right
http://jsfiddle.net/kkgbV/1/
labelブロック要素を作成inputして、右にフロートすることもできます。
http://jsfiddle.net/kkgbV/4/