This is probably a no-brainer, but in case it isn't, I thought I'd share. Imagine you are building a simple flash-based cfform. At the end you include a submit button. However, but button comes out aligned to the left, like so:

Normally buttons are aligned under the form fields. How do we do that? By simply wrapping the button (or buttons) in a form group, it will align properly:

<cfformgroup type="horizontal">
   <cfinput type="submit" name="save" value="Save">
</cfformgroup>

The layout now looks like so:

Oh, and btw, these screen shots are from my next big software release, and no, I won't (can't) say what it is yet. :)