Thread CSS: label und Formularfeld übereinander anordnen (3 answers)
Opened by pktm at 2009-07-12 13:25

pktm
 2009-07-12 18:32
#123085 #123085
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Das ist es, was ich haben wollte:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<title>vertical align</title>
<meta name="author" content="Gernot">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<style type="text/css">

input {
margin-left:3px;
}

label {
display: block;
background-color:yellow;
}

.inlineBlock { display: inline-block; width: 7em; }

form#myForm div {
display: inline-block;
width: 7em;
background-color: blue;
}

form#myForm div#counter {
display: inline-block;
width: 12em;
background-color: blue;
}

</style>
</head>
<body>
<form name="myForm" id="myForm" action="#" method="post" >
<div id="counter">
<label for="counter">Zähler:</label>
<input type="text" id="counter" name="counter" maxlength="8" size="8" />
</div>
<div>
<label for="counter2">Zähler2:</label>
<input type="text" id="counter2" name="counter2" maxlength="8" size="8" />
</div>
<div>
<label for="counter3">Zähler3:</label>
<input type="text" id="counter3" name="counter3" maxlength="8" size="8" />
</div>
</form>
</body>
</html>


So muss ich keine <br>s einfügen. Die müsste ich dann nämlich wieder rausnehmen, wenn ich die Labels anders ausrichten möchte.
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread CSS: label und Formularfeld übereinander anordnen