Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

float: left; text-align: right; Problem 1

Status
Not open for further replies.

ASPVBNerd

Programmer
Joined
Nov 23, 2005
Messages
83
Location
SE
I'm sorry for the bad explanation I gave.

I want the text to be like this. The same as the page as
And still have the round corner design, same as this page
I noticed that when I use this
Code:
.text_content	{
float: left;
text-align: right;
}

Then my text is being exactly as the way that i want it, but then it doesn't show the round corners.

Hope you understand my problem now.
 
Probably the easiest thing to do would be to this:

Code:
.text_content	{
	text-align: right;
	width: 13em;
}

Although there are other ways.

Hope this helps,
Dan



[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
BillyRayPreachersSon, Thank you.

This is beautiful.

What does width: 13em; I have never seen em
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top