Jump to content

Tidy my Code!


Crew-Portal

Recommended Posts

Yes Dreamweaver has a code formatting option. I'm on my Linux box so I can't give you the exact steps for what to choose. I know that it's available in the drop down menu bar. I have found that if you have nested tables, it doesn't do a good job of tidying that, so go back through it.

Link to comment
https://forums.phpfreaks.com/topic/63820-tidy-my-code/#findComment-318074
Share on other sites

I am pretty good at organizing my code but I do not use up so much space as professionals do for example if I was making a table I would write it like:

 

<table width="900>

<tr><td>Hello</td></tr>

</table>

 

While pros would write it like:

 

<table width="900>

<tr>

<td>

Hello

</td>

</tr>

</table>

 

Link to comment
https://forums.phpfreaks.com/topic/63820-tidy-my-code/#findComment-318076
Share on other sites

Archived

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.