What's the "correct" semantic way to specify image height and width? In CSS...
width:15px;
or inline...
<img width="15"
?
CSS seems like the right place to put visual information. On the other hand, few would argue that image "src" should not be specified as an attribute and the height/width seem as tied to the binary image data as the "src" is.
(Yes, I realize from a technical, end-user perspective this really doesn't matter.)