Brauche Hilfe bei 3 Feldern

hoctar

Erfahrenes Mitglied
Hi :)
ich versuche gerde mir soetwas zusammenzubauen: Bild

Leider bekomme ich das nicht.

HTML:
<input type="button" name="" value="" style="width: 200px;" />
<input type="button" name="" value="" style="width: 200px;" />
<span style="display: block; width: 398px; height: 50px; overflow: auto; border: 1px solid; clear: right;">test</span>
 
Hi,

so dürfte es passen:
HTML:
<form style="width:400px;">
      <input type="button" name="" value="" style="width: 200px; float:left;" />
      <input type="button" size="40" name="" value="" style="width: 200px; float:right;" />
      <span style="clear:both; display: block; width: 398px; height: 50px; overflow: auto; border: 1px solid;">test</span>
</form>


mfg Maik
 
Hey Maik, kannst du vllt hier schaun:

HTML:
<style type="text/css">
<!--
label {

        float: left;
        width: 150px;
        line-height: 20px;
        margin-bottom: 10px;
        margin: 5px 0;

}

.field {
        /*clear: both;*/
}
//-->
</style>



        <div class="field">
                <label>Cu</label>
		<div style="width: 400px;">
		      <input type="button" name="" value="" style="width: 200px; float:left;" />
		      <input type="button" size="40" name="" value="" style="width: 200px; float:right;" />
		      <span style="clear:both; display: block; width: 398px; height: 50px; overflow: auto; border: 1px solid;">test</span>
		</div>

	</div>

Das label soll auf der linken Seite stehen und rechts davon die 3 Felder.
 
Ah sieht gut aus, Danke :)

Gibts es eine Möglichkeit die drei Felder links zu floaten, weil ja der Abstand vom label zu groß ist ?
 
Zurück