使用 HTML 和 CSS 将文本和选择框对齐到相同的宽度


当我们在 CSS 中设置某个元素的 宽度高度 时,该元素通常显示得比实际尺寸大。这是因为,默认情况下,会将 内边距边框 添加到元素的宽度和高度中,然后显示该元素。

盒尺寸属性 会将元素的内边距和边框包括在实际宽度和高度中,从而使元素不会显示得比实际尺寸更大。使用此属性的格式为 box-sizing:box-border

示例

你可以尝试运行以下代码以将文本和选择框对齐到相同的宽度 −

<html>
   <head>
      <style>
         input, select {
            width: 250px;
            border: 2px solid #000;
            padding: 0;
            margin: 0;
            height: 22px;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
         }
         input {
            text-indent: 3px;
         }
      </style>
   </head>
   <body>
      <input type = "text" value = "Name of Candidate"><br>
      <select>
         <option>Select Choice</option>
         <option>Student</option>
         <option>Teachers</option>
         <option>Head</option>
      </select>
   </body>
</html>

更新于: 2023 年 11 月 23 日

1 千次浏览

开启您的职业生涯

通过完成课程获得认证

开始
广告