이 아니고 width 기준 퍼센트 값인거 같습니다.
.wrap { width: 200px; height: 100px; border: 5px solid red; } .box { width: 300px; text-indent: 10%; border: 10px solid black; }
<div class="wrap"> <div class="box">Text-Indent ~ !</div> </div>
일때 text-indent: 30px 입니다.
comment