IE 的 CSS 行为:首创
我想使用 CSS 行为来定位 div
中的第一个 p
元素,该元素不是 div
中的第一个元素。
我在这里看到了一个类似的问题,它通过使用级联选择器来回答 div 中的 p,例如:
div h1 p
因为我可能不知道第一个元素可能是什么(可能是 h1
或 h2 等,我想知道是否可以在 CSS 中使用 IE 行为来模仿
:first-of-type
提前感谢您的帮助。
I wanted to use a CSS behaviour to target the first p
element in a div
, which is not the first element in the div
.
I saw a similar question on here which answered with using cascading selectors to the p in the div, like:
div h1 p
As I may not know what the first element may be (maybe h1
or h2
etc, I was wondering whether it was possible to mimic the :first-of-type
using IEs behaviours in CSS.
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例子来说效果很好
这对于这个
: http://jsfiddle.net/jasongennaro/zJaAa/1/
This works fine
for this
Example: http://jsfiddle.net/jasongennaro/zJaAa/1/