+ 1
How i can add space between Name and input? In html
Like this Name. [username ] https://code.sololearn.com/WuzkVeXkgIEm/?ref=app
3 Answers
+ 2
Just add a class attribute inside your form tag (for ex:<form class="any name"> )and then style the class in CSS using the white-space value.
Do it like this,
.any name{
white-space: pre-wrap ;
}
After doing so whenever you add spaces or line breaks in your code the results would also show spaces and line breaks .
+ 1
Thanks bro š
š„VENAGEš„
+ 1
Saber Ahmadzai You're welcome