I have multiple elements I want to give these attributes:
<!ATTLIST [all these elements]
width CDATA "0"
height CDATA "0"
margin CDATA "0 0 0 0"
padding CDATA "0 0 0 0"
rotation CDATA "0"
halign (left|center|right|full) "center"
valign (top|middle|bottom|full) "middle"
>
Is this possible somehow in DTD, or will I have to do it manually?
(Also, while I'm here, I don't think it was such a good idea to declare the margin
and padding
attributes that way. Does anyone know a better way?)