zachary Posted October 1, 2007 Report Share Posted October 1, 2007 I just started working on my website, I haven't done web coding in about a year.... Can't believe I remember any...Well my problem is that, If I don't break my line it keeps making the table grow... Is there a way to do max character per a line then it breaks automatically? I'm sure there is just have not coded in a year. Link to comment Share on other sites More sharing options...
Err Posted October 1, 2007 Report Share Posted October 1, 2007 AS long as you're not using , which is a non-breaking space, to space out your text, then that should not happen. Link to comment Share on other sites More sharing options...
zachary Posted October 1, 2007 Author Report Share Posted October 1, 2007 Here go to my website...www.runetomb.com/siteab (testing ground for new website release0) Link to comment Share on other sites More sharing options...
justsomeguy Posted October 1, 2007 Report Share Posted October 1, 2007 Is there a way to do max character per a line then it breaks automatically?No, there is not a way to specify how many characters you want to display before it breaks the line. Link to comment Share on other sites More sharing options...
Err Posted October 1, 2007 Report Share Posted October 1, 2007 You can however make your table cell <td> not to go passed a certain width. That will stop your table from growing. <style type="text/css">td { width: 50%; /* or whatever you want here */}</style> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now