Change Password

How can you make the total width of an element be 100px including padding and border?
Use 'box-sizing: border-box;' with width set to 100px
Set width to 100px without 'box-sizing' property
Use 'box-sizing: content-box;' with width set to 100px
Set width, padding, and border so their sum is 100px