css不常见样式总结 text-decoration z-index outline

1.text-decoration:line-through
文字加样式有下划线
在这里插入图片描述
2.z-index
设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面 越大的值越靠前

3.border:none 清除边框

4.background: none 清除背景

5.outline
绘制于元素周围的一条线,位于边框边缘的外围,可起到突出元素的作用。
outline:none 取消外边缘的线

6.css超出一行省略号
over-flow: hidden
text-overflow: ellipsis
white-space: nowrap;

7.box-sizing
content-box: 测量width和height属性只包括的内容,但不是border, margin, 或者 padding。
border-box:width和height属性包括padding和border,但不是margin。这是盒模型的文档时,Internet Explorer使用Quirks模式。
padding-box
winth和height属性包括padding的大小,不包括border和margin

发布了33 篇原创文章 · 获赞 0 · 访问量 862

猜你喜欢

转载自blog.csdn.net/weixin_44685781/article/details/104892190