Full-Demon Posted June 16, 2007 Share Posted June 16, 2007 Hi, How can I use CSS to align 3 parts of text on one row; first part is aligned left, second part is in the middle (couldnt get this fixed), and the third part is on the right. So when you have a div with the width of 640px, that the second part is exactly in the middle. This is how far I am: <div> <span style="text-align:left; float:left;"> left </span> <span style="float:left; text-align:center;"> center </span> <span style="float:right;"> right </span> </div> <div style="clear:both;"></div> This way the centered text is not centered, because the second span has no width... Thank you for your help, FD Link to comment https://forums.phpfreaks.com/topic/55814-css-text-left-center-and-right-alignment-on-one-row/ Share on other sites More sharing options...
ToonMariner Posted June 18, 2007 Share Posted June 18, 2007 give the centre span margin: 0 auto; and possibly give them all a width. Link to comment https://forums.phpfreaks.com/topic/55814-css-text-left-center-and-right-alignment-on-one-row/#findComment-276657 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.