Home >Web Front-end >HTML Tutorial >脚本化css / css新特性_html/css_WEB-ITnose

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

WBOY
WBOYOriginal
2016-06-24 11:31:571143browse

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

 

Statement:
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