Jump to content

Help...


zachary

Recommended Posts

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...