JSFiddle - React, Tailwind, and code Playground

HTML

<div id="firstDiv">
이것도 500px
</div>
<div id="secondDiv">
이것도 500px 길이가 같아졌습니다.
</div>

CSS

#firstDiv {
  width : 500px;
  border : 1px solid black;
  margin : 10px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
   box-sizing: border-box;
}

#secondDiv {
  width : 500px;
  border : 15px solid black;
  padding : 20px;
  margin : 10px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
   box-sizing: border-box;
}