脚本化css / css新特性_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:31:57
Original
1004 people have browsed it

1.border-radius:50%;

 

2.text-shadow: h-shadow  v-shadow  blur color;

h-shadow:水平位置投影;

v-shadow:垂直位置投影;

blur:模糊的距离;

color:阴影颜色;

text-shadow:2px 2px 8px #ff0000;

 

3.column-count: number|auto;

 

.newspaper
{
-moz-column-count:3;  /* Firefox */
-webkit-column-count:3;  /* Safari and Chrome */
column-count:3;

 

-moz-column-gap:30px;  /* Firefox */
-webkit-column-gap:30px;  /* Safari and Chrome */
column-gap:30px;
}

 

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!