代码之家  ›  专栏  ›  技术社区  ›  John_Cartor

表格居中对齐[副本]

  •  0
  • John_Cartor  · 技术社区  · 6 年前

    我一直在阅读StackOverflow和其他网站上的各种文章,但我仍然面临着一个问题。请不要复制。

    我找不到表格 id="clientLogin" 即使我用 float:center/middle; position 等,但不能成功。请解决我的问题,如果我做了任何错误,请更新。 感谢你的前进! Screenshot of image

    CSS文件: https://pastebin.com/Pqvu0s9h

      <div id="content">
            
             <h1>Check Ticket Status</h1>
    <p>To view the status of a ticket, provide us with the login details below.</p>
    <form action="login.php" method="post" id="clientLogin">
        <strong></strong>
        <br>
        <div>
            <label for="email">E-Mail Address:</label>
            <input id="email" type="text" name="lemail" size="30" value="">
        </div>
        <div>
            <label for="ticketno">Ticket ID:</label>
            <input id="ticketno" type="text" name="lticket" size="30" value=""></td>
        </div>
        <p>
            <input class="btn" type="submit" value="View Status">
        </p>
        </form>
    <br>
    <p>
    If this is your first time contacting us or you've lost the ticket ID, please <a href="home.php">open a new ticket</a>.    
    </p>
            </div>
            
            
    
        </div>
    2 回复  |  直到 6 年前
        1
  •  -1
  •   Kix_g    6 年前

    这是用一个 table ,但也可以在 form . (见 class 姓名和 ID 姓名)

    .content {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    #clientLogin{
      max-width: 50%;
    }
    <div class="content">
      <table id="clientLogin">
        <tr>
          <th>Heading</th>
          <th>Heading</th>
        </tr>
        <tr>
          <td>Cell</td>
          <td>Cell</td>
        </tr>
        <tr>
          <td>Cell</td>
          <td>Cell</td>
        </tr>
      </table>
    </div>
        2
  •  0
  •   Aryan Twanju    6 年前

    更改选择器的CSS #clientLogin 这样地。您需要删除该属性 position: absolute;

    #clientLogin {
      width: 400px;
      margin-top: 20px;
      padding: 10px 100px 10px 10px;
      border: 1px solid #ccc;
      background: url('/assets/copyright-shiv/images/lock.png?1319655200') 440px 50% no-repeat #FCF5E9;
      margin-left: auto;
      margin-right: auto;
    }