css
0的0次方
这个作者很懒,什么都没留下…
展开
-
微信小程序流量主广告怎么加圆角
微信小程序流量主广告ad加圆角,广告标签外侧加一层view标签,给view设置圆角和overflow:hidden。原创 2022-08-19 14:19:13 · 462 阅读 · 0 评论 -
css实现优惠券的样式
用css样式也可以实现优惠券原创 2022-07-12 16:38:05 · 838 阅读 · 0 评论 -
css动态改变style 的三元写法
:style="{ 'border': is_gb == 0 ? 1 + 'px solid #f440' : 1 + 'px solid' + gbColor , 'color': is_gb== 0 ? '#f40' : gbColor }"原创 2020-12-09 09:26:26 · 1716 阅读 · 0 评论 -
CSS结构性伪类选择器nth-child
E:first-child 匹配父元素中第一个子元素E:last-child 匹配父元素中最后一个子元素E:nth-child(n) 匹配属于其父元素的第n个子元素,不论元素的类型E:nth-last-child(n) 从后面往前面数E:nth-of-type(n) 匹配父元素的第n个指定类型的子元素E:nth-last-of-type(n) 从后面往前面数E:n...原创 2020-03-16 13:43:28 · 266 阅读 · 0 评论