このサイトを初めて見た時は、CSS/HTMLフォームのテキストボックスの整列
私は同じ行のテキストボックスを照らすためにCSSとHTMLに問題があります。現在、それらは整列していないことを意味します。助けて説明していただけますか?
<!DOCTYPE html>
<html>
<style>
.input1:focus {
background-color: yellow;
}
.input1:hover {
background-color: cyan;
}
</style>
<body>
<form>
First name: <input class="input1" type="text" name="firstname"><br>
Last name: <input class="input1" type="text" name="lastname"><br>
E-mail Address: <input class="input1" name = "email" placeholder = "[email protected]">
<p>
<input type = "submit" value = "Submit Form">
<input type = "reset" value = "Reset button">
</p>
</form>
</body>
</html>
[CSSでフォーム要素を揃え](http://stackoverflow.com/questions/13204002/align-form-elements-の可能性のある重複作らin-css) – languitar