Copy link to clipboard
Copied
Most of my website is centered, but I want to left justify just the middle text of one php page. It's a series of testimonials. I selected the text and in the CSS Properties panel I chose Left-Justify. In Dreamweaver it looked Left-Justified. Then I saved it and also had to save the boilerplate.css. After uploading both files, the text remained centered online. Here is the link:
Never heard of left-justify css. (although I have never justified text as I dont like the uniform look or the different spacing between the words, personally I'd rather leave it as ragged.
If I had to justify for some reason I'd use:
Left justify:
#text1 {
text-align: justify;
}
Right justify:
#text1 {
text-align: justify;
text-align-last: right;
}
Copy link to clipboard
Copied
Never heard of left-justify css. (although I have never justified text as I dont like the uniform look or the different spacing between the words, personally I'd rather leave it as ragged.
If I had to justify for some reason I'd use:
Left justify:
#text1 {
text-align: justify;
}
Right justify:
#text1 {
text-align: justify;
text-align-last: right;
}
Copy link to clipboard
Copied
How do I delete this discussion?
Copy link to clipboard
Copied
Why do you want to delete this discussion? Your question has been answered, and will benefit other users with a similar question.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now