前のページで CSS を変更できません。どこが間違っていますか? フィドルリンク
見るための戦車!
CSS:
.i1 {
float: right;
height: 18px;
margin-top: 6px;
}
label {
border-bottom: 1px dotted #CCCCCC;
clear: both;
float: left;
height: 25px;
margin: 5px 0 0;
width: 450px;
line-height: 32px;
}
HTML:
<label>Titel:<input class="i1" type="text" name="titel" value="" /></label>
<label>Vorname:<input class="i1" type="text" name="vorname" value="" /></label>
<label>Nachname:<input class="i1" type="text" name="nachname" value="" /></label>
Jクエリ:
$("input").focus(function () {
$(this).prev("label").css("border-bottom", "1px dotted #63aec4");
});