私はHTMLとCSSの方が新しいです。私はまた、非常に基本的な質問があることを知っています。私はログインフロントエンドを作成しようとしていますが、私が使用しているコードは以下の通りです。コードはHTMLとCSSだけログイン画面の書式設定
<!DOCTYPE html>
<html>
\t <head>
\t \t <style>
\t \t \t form {
\t \t \t \t border: 6px solid #f1f1f1;
\t \t \t }
\t \t \t input[type=text]{
\t \t \t \t width: 100%;
\t \t \t \t padding: 12px 12px;
\t \t \t \t margin: 16px 0;
\t \t \t \t display: inline-block;
\t \t \t \t border: 2px solid #ccc;
\t \t \t \t box-sizing: border-box;
\t \t \t }
\t \t \t input[type=password] {
\t \t \t \t width: 100%;
\t \t \t \t padding: 12px 12px;
\t \t \t \t margin: 16px 0;
\t \t \t \t display: inline-block;
\t \t \t \t border: 2px solid #ccc;
\t \t \t \t box-sizing: border-box;
\t \t \t }
\t \t \t button {
\t \t \t \t background-color: #4CAF50;
\t \t \t \t color: white;
\t \t \t \t padding: 14px 20px;
\t \t \t \t margin: 8px 0;
\t \t \t \t border: none;
\t \t \t \t cursor: pointer;
\t \t \t \t width: 10%;
\t \t \t }
\t \t \t button:hover {
\t \t \t \t opacity: 0.8;
\t \t \t }
\t \t \t .cancelbtn {
\t \t \t \t width: auto;
\t \t \t \t padding: 10px 18px;
\t \t \t \t background-color: #f44336;
\t \t \t }
\t \t \t .imgcontainer {
\t \t \t \t text-align: center;
\t \t \t \t margin: 12px 40px 12px 0;
\t \t \t }
\t \t \t .container {
\t \t \t \t padding: 20px;
\t \t \t }
\t \t \t span.psw {
\t \t \t \t float: right;
\t \t \t \t padding-top: 16px;
\t \t \t }
\t \t </style>
\t </head>
\t <body>
\t \t <center>
\t \t \t <h2>Inventory Update Interface Login</h2>
\t \t </center>
\t \t <form method="post">
\t \t \t <div class="container">
\t \t \t \t <label>
\t \t \t \t \t <b>Username</b>
\t \t \t \t </label>
\t \t \t \t <input type="text" placeholder="Enter Username" name="uname" required>
\t \t \t \t <label>
\t \t \t \t \t <b>Password</b>
\t \t \t \t </label>
\t \t \t \t <input type="password" placeholder="Enter Password" name="psw" required>
\t \t \t \t <button type="submit">Login</button>
\t \t \t </div>
\t \t </form>
\t </body>
</html>
を使用して書かれているが、問題は、私は長さが若干小さく、画面やテキストフィールドの中央にボックスを作りたいということです。少し早いですがお礼を!
ありがとうございました –