The text-indent
property defines the indentation of the first line of a text block. An indentation is a space at the beginning of the first line of the text block.
text-indent: value;
.div-1 {
text-indent: 100px;
border: 1px solid red;
}
.div-2 {
text-indent: 5%;
border: 1px solid red;
}
value: sets the given value as the length of indentation. (Default value is 0)