欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS 样式注意、常识_html/css_WEB-ITnose

程序员文章站 2022-05-09 16:01:51
...
padding 的值,不能为负数。

使用 absolute 后,在定义好 width 和 height ,使用 border 的 width 和 height 会变大、变宽。

设置好看的细线

.thinBorder:after{

content: '';

width: 100%;

display: block;

border-top: 1px solid #ccc;

position: absolute;

left: 0;

bottom: 0px;

-webkit-transform: scaleY(0.5);

-webkit-transform-origin: 0% 0%;

}