Hello,
How can I align msc images?
To align normal images I use a project css file with:
.image
{
text-align: left;
}
The HTML code of a image looks something like:
<div class="image">
<img src="image.jpg" alt="image.jpg">
</div>
In doxygen my msc:
\msc
arcgradient = 8;
a [label="Client"],b [label="server"];
a=>b [label="COMMAND"];
\endmsc
Compared to an msc image:
<div align="center">
<img src="msc_inline_mscgraph_1.png" alt="msc_inline_mscgraph_1"
usemap="#msc_inline_mscgraph_1.map" border="0">
<map name="msc_inline_mscgraph_1.map" id="msc_inline_mscgraph_1.map"></map>
</div>
There is no div class for the msc images. So how to align them to the left
for example?
Thanks,
Roy
|