是否可以向 HtmlTextWriter WriteBreak 添加属性
使用 HtmlTextWriter.WriteBreak 方法时是否可以将类添加到 br 标记?
writer.AddAttribute(HtmlTextWriterAttribute.Class, "className");
writer.WriteBreak();
我需要一个符合 xHtml 的 html 输出,因此 WriteBreak 是完美的,因为它写道
<br />
我想向 br 添加一个类,以便我有
<br class="className" />
Is it possible to add a class to a br tag when using the HtmlTextWriter.WriteBreak method?
writer.AddAttribute(HtmlTextWriterAttribute.Class, "className");
writer.WriteBreak();
I need an xHtml compliant html output and therefore the WriteBreak is perfect as it writes
<br />
I want to add a class to the br so that I have
<br class="className" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以手动执行此操作,如下所示:
You can do it manually, like this: