justifier un texte css code example
Example 1: prevent textarea resize css
textarea {
resize: none;
}
Example 2: text align justify
text-align: justify;
Example 3: text unselectable css
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */