内联元素(如 span)没有默认样式
我正在尝试向我的页面添加内联元素。它的行为应该与 span 完全相同,即不引入它自己的任何默认样式。我希望能够在我的 JS 中引用这个元素(使用 id)。 请帮我建议一些样式(更少)的元素,例如跨度。
I am trying to add an inline element to my page. It should behave exactly like span i.e. not introduce any default styling of it's own..I want to just be able to refer this element in my JS (using id).
Please help me suggest some style(less) elements like span.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不添加一些额外的 css,如 @James Allardice 提到的那样,删除旧的 css 和/或应用新的样式。
Html:
css:
通过执行此操作,只有 id
MySpan
的 span 才会使用您的新样式或重置其样式。查看 www.w3schools.com 上的 css 属性以找出它们的默认值。
然后你可以在 javascript 中通过执行以下操作来引用 MySpan:
或者在 jquery 中通过执行以下操作来引用 MySpan:
Why not just add some extra css as mentioned by @James Allardice that removes old css and or applies new styling.
Html:
css:
By doing this only spans with id
MySpan
will use your new styling or have their styles reset.Look at css attributes on www.w3schools.com to find out their defaults values.
Then you can refer to MySpan in javascript by doing:
Or in jquery by doing:
在 JavaScript 中使用 createElement()
应该添加一个新的元素类型“newElement”
Use createElement() in JavaScript
That should add a new element type, "newElement"