为什么输入栏会稍微溢出到容器的右侧?

问题描述 投票:0回答:1

我使用 HTML、CSS 和 JavaScript 制作了一个计算器。一切工作正常,但输入栏右侧略有溢出。

我尝试将其对齐到中心以及很多东西,但没有任何效果。 这是我的代码(仅输入部分):

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  justify-content: center;
  display: flex;
  align-items: center;
}
.container {
  width: 250px;
  height: 400px;
  background-color: antiquewhite;
  padding: 20px;
  border-radius: 1.5rem;
  outline: 5px solid gray;
}
.container input {
  width: 100%;
  border-style: none;
  height: 50px;
  border-radius: 1rem;
  outline: 2px solid;
  font-size: 20px;
  text-align: right;
  padding-right: 10px;
}
    <div class="container">
      <!--Input-->
      <div class="input">
        <input type="text" placeholder="Write your equation here  " value="" />
      </div>

如何让输入适合容器?

html css input
1个回答
0
投票

如果元素未定义为

box-sizing: border-box
,则宽度不会使用填充进行计算。这意味着它计算 100% 宽度并从
padding-right: 10px

添加 10px

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

body {
  min-height: 100vh;
  justify-content: center;
  display: flex;
  align-items: center;
}

.container {
  width: 250px;
  height: 400px;
  background-color: antiquewhite;
  padding: 20px;
  border-radius: 1.5rem;
  outline: 5px solid gray;
}

.container input {
  width: 100%;
  border-style: none;
  height: 50px;
  border-radius: 1rem;
  outline: 2px solid;
  font-size: 20px;
  text-align: right;
  padding-right: 10px;
}
<div class="container">
  <!--Input-->
  <div class="input">
    <input type="text" placeholder="Write equation here" value="" />
  </div>

© www.soinside.com 2019 - 2024. All rights reserved.