使用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>