当前位置: 首页 > 知识库问答 >
问题:

按钮文本不能正确对齐

壤驷阳波
2023-03-14

我目前正在克隆一个站点,在“输入电子邮件”输入中,文本不会对齐,并粘在输入的底部,我更希望它在中间的左边。我该怎么解决这个?感谢任何帮助<3

null

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
:root {
  --primary-text: #111111;
  --secondary-text: #91908f;
  --background: #fffefc;
  --btn-primary: #e16259;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--b);
  font-family: "Inter", sans-serif;
}


/* NAV */

header img {
  float: left;
  max-width: 100%;
  height: 50px;
  margin: 15px 60px;
}

header nav {
  float: right;
  margin-top: 30px;
  padding-right: 20px;
}

header nav a,
header nav .vertical-line {
  padding-right: 15px;
  text-decoration: none;
  color: #111111;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}


/* Hero Section */

.hero {
  padding-top: 120px;
}

.hero-img {
  display: flex;
  justify-content: center;
  max-width: 100%;
  height: 200px;
}

h1 {
  font-size: 70px;
  text-align: center;
  padding-top: 15px;
}

h4 {
  text-align: center;
  font-weight: 200;
  font-size: 20px;
  color: #91908f;
}

form {
  display: flex;
  justify-content: center;
}

input {
  text-align: left;
  width: 280px;
  margin-top: 30px;
  padding-top: 18px;
  border: 1px solid #91908f;
  border-radius: 4px;
  margin-right: 10px;
}

input::placeholder {
  margin-bottom: 20px;
}

form button {
  width: 80px;
  padding: 0px;
  text-align: center;
  margin-top: 30px;
  color: #fffefc;
}

form label {
  margin-top: 5px;
  padding-left: 20px;
}

form .btn-primary {
  display: inline-block;
  background-color: #e16259;
  border: 1px solid #af4d46;
  text-align: center;
  border-radius: 6px;
  font-weight: 400;
}
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Notion</title>
  <link rel="stylesheet" href="css/style.css">
  <link rel="shortcut icon" href="favicon.ico">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />

</head>

<body>
  <header>
    <a href="https://www.notion.so"><img src="img/logo.png" alt="Notion Logo"></a>
    <nav>
      <a href="#">Product</a>
      <a href="#">Download</a>
      <a href="#">Resources</a>
      <a href="#">Pricing</a>
      <a href="#">Careers</a>
      <span class="vertical-line">|</span>
      <a href="#">Sign Up</a>
      <a href="#">Log In</a>
    </nav>
  </header>

  <div class="hero">
    <div class="hero-img">
      <img src="img/hero.webp" alt="Illustration of 3 people using laptop computers on seperate desks with different expressions">
    </div>

    <h1>All-in-one workspace</h1>
    <h4>One tool for your whole team. Write, plan, and get organized.</h4>

    <form action="">
      <input type="text" placeholder="Email">
      <button class='btn-primary' type="submit">Sign Up</button>
    </form>
    <p>For teams & individuals - web, mobile, Mac, Windows</p>
  </div>
</body>

</html>

null

共有1个答案

柴砚文
2023-03-14

您可以删除输入的填充,并使用高度和行高进行调整

null

.ip {
   height: 30px;
   line-height: 30px;
   padding: 2px 8px;
}
<input type="text" class="ip" />
 类似资料:
  • 我有jframe与2 jboard。我有一些组件在第一个jboard和第二个按钮。当我在第一个面板上点击jbuton(调用方法删除所有)它删除所有组件(我调用方法重新验证(),重新绘制())在该jboard然后我显示第二个面板与组件。长话短说,我删除第一个jboard显示第二个,第二个显示第一个jframe,...在jboard之间切换工作正常,当我切换回第一个jboard光标时,按钮指针类型不显

  • 我试图动态创建按钮以匹配数据表。我使用这个答案作为参考点,但是我一直得到这个错误代码:我尝试了多种方法来减轻错误代码,但我不知道如何修复它我试图将地图设置为数组,但也不起作用。代码已成功计数,并显示数据,但我无法让它添加所需的按钮。

  • 我正在尝试学习JavaFX,我正在构建一个计算器,我正在体验一些需要指导的按钮大小调整行为。 下面是全班学生。我所做的是为每行数字按钮和点按钮创建一个HBox。然后,这三行被放置在VBox中,而VBox又被放置在HBox中的equals按钮旁边。 我正在阅读JavaFX for Dummies,并且看了很多帖子等等,但是无法解决这个问题! 编辑:我现在尝试使用GridPane来组装这个GUI,遇到

  • 我有一个按钮: null null 但是,当我点击它的时候,这是永远不会打印任何东西的?您可以在这张图片中看到,它正在找到这些元素,但在单击时没有触发。

  • 我需要一些android编程的帮助。所以onbutton click我在icite方法中调用。基本上,当单击按钮时,所有文本框文本都将转换为一个新变量上的字符串。之后,我将所有变量组合成一个名为total的字符串。然后将标签textView10的文本更改为字符串total。然而,它只是崩溃了我的应用程序。你知道我可能做错了什么吗?我的猫: 代码

  • 就是这个班 我想将当前日期显示为文本输入按钮。(以下是按钮的布局。) 这是设置文本输入按钮的.kt代码