给我更好的主意在 asp.net 页面中做 Marquee 标签
下面的代码可以工作,但我不知道它的编写方式是否?
<td align="center" style=" height:50px; width:100%; background-color:Red;width:10%;">
<div id="divremview" >
<marquee behavior="scroll" direction="up">
<div id="div1"><asp:Label ID="Label1" runat="server" Text="Label">Hi</asp:Label></div>
</marquee>
</div> </td>
而且它也没有居中对齐。像往常一样,它左对齐
The bellow code working, but i don’t know it the write way or not?
<td align="center" style=" height:50px; width:100%; background-color:Red;width:10%;">
<div id="divremview" >
<marquee behavior="scroll" direction="up">
<div id="div1"><asp:Label ID="Label1" runat="server" Text="Label">Hi</asp:Label></div>
</marquee>
</div> </td>
Also it not in center alignment. As usual it in left alignment
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
marquee
控件是仅适用于 IE 的控件,很久以前就已被弃用。我建议您查看其他标准替代品,例如 jQuery 插件。
示例:
The
marquee
control is a IE only control and has been deprecated long time ago.I suggest you to look at other standard alternatives like a jQuery plug-in.
Examples: