當我們在 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>
以上是使用HTML和CSS將文字和選取框對齊為相同的寬度的詳細內容。更多資訊請關注PHP中文網其他相關文章!