ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,772 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a paragraph with too many words in it. I want it to be left and right aligned. Like Microsoft Word (same as ctrl+D). How can I do this?
First ;
I want like this ;
This is (Ctrl+D)
Is there a parameter in html that I can do the same way?
My code ;
<p>
İşbu Bilgilendirme Metni;
.
.
.
.
.
.
.
yapılacak her türlü işlemin kişisel verinin işlenmesi olarak kabul edileceğini bildiririz.
</p>
Try this:
<p style="text-align: justify">
. . .
</p>
If this <p> is generated by some ASP controls, then show details.