<span class="a" dojoAttachPoint="apoint"></span>
<span class="b" dojoAttachPoint="bpoint">hyperlinked msg</span>
<span class="c" dojoAttachPoint="cpoint"></span>
<div>Hello</div>
css:
.a, .b, .c{
float:left
}
Now when i am selecting the hyperlinked message, it is also selecting the next div's text 'Hello'.To avoid this problem I changed the code to
<div>Hello</div>
<span class="a" dojoAttachPoint="apoint"></span>
<span class="b" dojoAttachPoint="bpoint">hyperlinked msg</span>
<span class="c" dojoAttachPoint="cpoint"></span>
And this solved the problem.Can anyone please provide an explanantion as to how this problem got solved?