Nicht mehr ganz neu hier
Hallo
ich sitz grad wieder mal vor meinem Formular und könnt echt :'(
hab soweit alles schön mit css formatiert, nur möchte ich <label> & <input> Felder nebeneinander reihen um Platz zu sparen!
Habs sogar mal hinbekommen, jedoch funzt es nicht immer!?
Auszug vom html:
<p>
<label for="vorname">Vorname:</label>
<input name="vorname" type="text" id="vorname" maxlength="20" />
</p>
<p>
<label class="nachname" for="nachname">Nachname:</label>
<input name="nachname" type="text" id="nachname" maxlength="20" />
</p>
<p>
<label for="strasse">Strasse:</label>
<input name="strasse" type="text" id="strasse" maxlength="20" />
</p>
<p>
<label for="plz">PLZ:</label>
<input name="plz" type="text" id="plz" maxlength="5" />
</p>
<label class="ort" for="ort">Ort:</label>
<input name="ort" type="text" id="ort" maxlength="20" />
</p>
Auszug vom CSS:
:arrow: bei PLZ & ORT klappts, jedoch nicht bei Vor- & Nachname!
#formular .nachname {
width: 30px;
text-align: right;
}
#formular #nachname {
width: 117px;
}
#formular #vorname {
width: 140px;
}
#formular .ort {
width: 30px;
text-align: right;
}
#formular #ort {
width: 117px;
}
#formular #plz {
width: 35px;
}
Was mach ich da falsch, steh komplett auf der Leitung!
Anbei noch ein Bild wie`s momentan aussieht!
thxs an @ll!
lg Mathi
ich sitz grad wieder mal vor meinem Formular und könnt echt :'(
hab soweit alles schön mit css formatiert, nur möchte ich <label> & <input> Felder nebeneinander reihen um Platz zu sparen!
Habs sogar mal hinbekommen, jedoch funzt es nicht immer!?
Auszug vom html:
<p>
<label for="vorname">Vorname:</label>
<input name="vorname" type="text" id="vorname" maxlength="20" />
</p>
<p>
<label class="nachname" for="nachname">Nachname:</label>
<input name="nachname" type="text" id="nachname" maxlength="20" />
</p>
<p>
<label for="strasse">Strasse:</label>
<input name="strasse" type="text" id="strasse" maxlength="20" />
</p>
<p>
<label for="plz">PLZ:</label>
<input name="plz" type="text" id="plz" maxlength="5" />
</p>
<label class="ort" for="ort">Ort:</label>
<input name="ort" type="text" id="ort" maxlength="20" />
</p>
Auszug vom CSS:
:arrow: bei PLZ & ORT klappts, jedoch nicht bei Vor- & Nachname!
#formular .nachname {
width: 30px;
text-align: right;
}
#formular #nachname {
width: 117px;
}
#formular #vorname {
width: 140px;
}
#formular .ort {
width: 30px;
text-align: right;
}
#formular #ort {
width: 117px;
}
#formular #plz {
width: 35px;
}
Was mach ich da falsch, steh komplett auf der Leitung!
Anbei noch ein Bild wie`s momentan aussieht!
thxs an @ll!
lg Mathi