Forum: HTML and CSS Sep 7th, 2004 |
| Replies: 8 Views: 5,552 No Problem. Just a little bit of advice... It you are creating a paragraph use the <p></p> tags, it will degrade better than div tags in older browsers. Save <div></div> for containers. Take it... |
Forum: HTML and CSS Sep 7th, 2004 |
| Replies: 8 Views: 5,552 I should have looked at your previous posts in other CSS realted threads... Just thought you were confused... Sorry... :o |
Forum: HTML and CSS Sep 3rd, 2004 |
| Replies: 8 Views: 5,552 The way I usderstand it, he would like both the right and left edges to be justified. Left leaves the the right side unjustified, right leaves the left side unjustified and center leaves both... |
Forum: HTML and CSS Sep 2nd, 2004 |
| Replies: 8 Views: 5,552 You can just add a style attribute to your <p> tag like this:
<p style="text-align: justify"> Text here </p>
That will justify your paragraph. Let me know if you need more help. |
Forum: HTML and CSS Aug 4th, 2004 |
| Replies: 2 Views: 7,676 I believe it is, but why... You could just apply the class to the <h1> tag: <h1 class="blah"> or assign the style to it in your style sheet:
h1 { some-style:xxx; }
Then all <h1>'s would... |