Home > Web Front-end > HTML Tutorial > CSS 样式注意、常识_html/css_WEB-ITnose

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

WBOY
Release: 2016-06-21 08:57:55
Original
912 people have browsed it

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%;

}



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template