幅60%のコンテンツセクションがあります。私は40%の幅のテキスト入力を得ました。その入力フィールドの横に、送信ボタンがあります。 私の知識によると、入力フィールドとコンテンツセクションの両方が同じ幅になるはずです。 | _________ 40%_________ || ____ 20%____ |
| _______________ 60%________________ |
しかしそうではありません。
HTML:CSSの幅が正しくない/わかりません
<input id="plannername" placeholder="Name eingeben" type="text"></input><!--
--><input id="plannersubmit" type="submit" value="eintragen"></input>
<div id="content"></div>
CSS:
#plannername{ /* The text input */
width:40%;
background-color:#9eefbc;
margin-left:20%;
border:0;
font-size:2em;
padding:20px;
}
#plannersubmit{ /* The submit button */
width:20%;
background-color:#6dce91;
border:0;
font-size:2em;
padding:20px;
transition:.2s ease-in-out;
}
#content{
width:60%;
background-color:#9eefbc;
height:500px;
margin-left:20%;
padding-top:70px;
margin-top:3px;
}
私の完全なコードはここにある:http://codepen.io/tobiasglaus/pen/xgBeaJ