answersLogoWhite

0


Best Answer

Look at the examples below:

<center>Hello, this text is centered.</center>

<left>Hello, this text is left-aligned</left>

<right>This text is right-aligned</right>

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What process did you use to align the text?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is left align in excel 2003?

It is the default setting for text. It aligns the text to the right side of a cell. If you use left align, the text will be aligned to the left side of the cell. If you use center align, the text will be aligned in the center of the cell.


Use div tags to align text right?

&lt;div style="text-align:right"&gt; or &lt;div align="right"&gt;


How do you text align an image in an HTML?

If you want the image to align left, then use the ALIGN=LEFT tag. If you want it to align to the right, use the ALIGN=RIGHT tag. &lt;IMG SRC="image URL" ALIGN=RIGHT&gt;


How do you allign your font on MySpace?

Text Here Text Here Text Here


How do you align text to justified in HTML?

Yes, Through the following code: &lt;p align ="justify"&gt;


By default where does the Excel aligns values?

Text will align to the left and numbers and dates align to the right.


How do you align text using notepad?

we can align text using notepad by by going to the font option


When you wish to position text or an object horizontally between the left and right margins on the Page use the left align button?

False. You will want to use "center" align.


Why do you need to align text?

You need to align text to make the view organized. An organized text looks more creative and saves space.


Left align table HTML?

I believe you can only align things in CSS. Using CSS left-aligning the table would require doing this:YOUR TABLE HEREThen in the part you would write this:#table{text-align: left}If you didn't get what I just said I suggest going to W3schools.com and going to the CSS tutorial.


What is align text left?

It aligns the text to the left


How do you align center the text in a column?

Use the CSS "text-align" property.Assuming that your column is built using a block level element with a set width (either fixed or fluid) your HTML will look something like this:text in the columnYour CSS will look something like this:div { width: 200px; text-align: center; }