PHP前端开发

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

百变鹏仔 3个月前 (09-22) #HTML
文章标签 宽度

当我们在 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>