The anchor fails.
<A href = "# order" title = "online order"> online order </a> <a name = "order" id = "order"> </a>
In html, adding an anchor to an anchor is generally okay and compatible with various browsers.
However, it was recently found that the ie6 kernel and the browser 360 failed,
Check the cause
<A name = "order" id = "order"> Any text </a>
If there is content in tag a, the 360 browser will be normal ..
Or add a style for this a tag and trigger hasLayout:
. Anchor {display: block; height: 0 ;}< a name = "order" id = "order" class = "anchor"> </a>
<A href = "# order" title = "online order"> online order </a> <a name = "order" id = "order"> </a>
In html, adding an anchor to an anchor is generally okay and compatible with various browsers.
However, it was recently found that the ie6 kernel and the browser 360 failed,
Check the cause
<A name = "order" id = "order"> Any text </a>
If there is content in tag a, the 360 browser will be normal ..
Or add a style for this a tag and trigger hasLayout:
. Anchor {display: block; height: 0 ;}< a name = "order" id = "order" class = "anchor"> </a>