Hi Frederick,
re:
> I'm a little unclear of why standard HTML attributes (like width) work on some things but not others.
Width as a direct attribute on an element is basically antique and isn't standard
anymore. It only works on a few element types.
The standard way to set a width is by the CSS width property:
<div style="width: 200px"><div>
- Michael
|