How can add HTML paragraph alignment

Harun Ergün 260 Reputation points
2023-01-30T12:16:04.8233333+00:00

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 ;

User's image

I want like this ;

User's image

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>

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,772 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,590 questions
ASP.NET API
ASP.NET API
ASP.NET: A set of technologies in the .NET Framework for building web applications and XML web services.API: A software intermediary that allows two applications to interact with each other.
370 questions
0 comments No comments
{count} votes

Accepted answer
  1. Viorel 119.6K Reputation points
    2023-01-30T12:39:27.59+00:00

    Try this:

    <p style="text-align: justify">
       . . .
    </p>
    

    If this <p> is generated by some ASP controls, then show details.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.