Witam otóż w jaki inny sposób można wyrównać równo pod sobą tekst z "input blokami" tak żeby to wyglądało estetycznie prócz tabel.
HTML
<!DOCTYPE html>
<html lang="pl">
<head>
<title>ADD USER</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<div id="add_user">
<form>
<h2>DODAWANIE UŻYTKOWNIKA</h2>
Nazwa Użytkownika: <input type="text" name="uid">
Hasło: <input type="password" name="pwd">
<div class="clear"></div>
Imię: <input type="text" name="first">
Nazwisko: <input type="password" name="last">
<div class="clear"></div>
E-mail: <input type="text" name="mail">
PESEL: <input type="date" name="PESEL">
<div class="clear"></div>
<button>DODAJ UŻYTKOWNIKA</button> <button>ZRESETUJ</button>
</form>
</div>
</div>
</body>
</html>
CSS
* {
margin: 0;
padding: 0;
font-family: Arial;
color: white;
}
.clear {
clear: both;
}
#container {
width: 960px;
}
#add_user {
outline-width:
padding: 10px;
border: 1px black solid;
background-color: #222222;
}
#add_user > h2 {
text-align: center;
}
#add_user > form > button {
color: black;
}
#add_user > form > input {
width: 200px;
}