 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Align text and select boxes to the same width with HTML and CSS
When we set the width and height of an element in CSS then often the element appears bigger than the actual size. This is because by default, the padding and border are added to the element’s width and height and then the element is displayed.
The box sizing property includes the padding and border of an element with actual width and height so that the element does not appear bigger than the actual size. The format to use this property is box-sizing: box-border
Example
You can try to run the following code to align text and select boxes to the same width −
 <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>Advertisements
 