博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
polymer的伪元素操作(::语法)
阅读量:5872 次
发布时间:2019-06-19

本文共 930 字,大约阅读时间需要 3 分钟。

hot3.png

Styling distributed children (::content)

Under shady DOM, the <content> tag doesn't appear in the DOM tree. Styles are rewritten to remove the ::content pseudo-element, and any combinator immediately to the left of ::content.

This implies:

  • You must have a selector to the left of the ::content pseudo-element.

    :host ::content div

    Becomes:

    x-foo div

    (Where x-foo is the name of the custom element.)

  • To limit styles to elements inside the ::content tag, add a wrapper element around the <content>element. This is especially important when using a child combinator (>) to select top-level children.

    In this case, the rule:

    .content-wrapper ::content > .special

    Becomes:

    .content-wrapper > .special

Custom properties can't style distributed children. The Polymer  shim doesn't support styling distributed children.

转载于:https://my.oschina.net/u/2391658/blog/1113941

你可能感兴趣的文章
ansible 基本操作(初试)
查看>>
更改tomcat的根目录路径
查看>>
51nod 1292 字符串中的最大值V2(后缀自动机)
查看>>
加快ALTER TABLE 操作速度
查看>>
学习笔记之软考数据库系统工程师教程(第一版)
查看>>
基本网络概念
查看>>
将 ASP.NET Core 2.0 项目升级至 ASP.NET Core 2.1 RC 1
查看>>
js提交图片转换为base64
查看>>
学习CodeIgniter框架之旅(二)继承自定义类
查看>>
Y2161 Hibernate第三次考试 2016年8月18日 试卷分析
查看>>
Angular CLI 使用教程指南参考
查看>>
PHP 程序员的技术成长规划
查看>>
access2003删除表记录_学习记录-第十七天-1(李玉婷MySQL基础 第11天)
查看>>
f1 score 代码_特征选择总结之 过滤式特征选择(附代码)——单变量过滤式特征选择方法总结...
查看>>
activty在哪个栈里面_Javascript之调用栈解析
查看>>
天兔(Lepus)监控邮件推送安装配置
查看>>
库存分配
查看>>
Kubernetes 1.9集群使用traefik发布服务
查看>>
如何在C++中增加给JavaScript调用的API
查看>>
大道至减
查看>>