您的位置:首页 > Web前端 > CSS

CSS3 文字模糊

2015-06-23 16:14 555 查看
/*

<style>
body{ -webkit-filter: blur(3px);
-moz-filter: blur(3px);
-o-filter: blur(3px);
-ms-filter: blur(3px);
filter: blur(3px);}
</style>

*/

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<style>
body{
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
background-size: auto, cover;
color: #fff;
font-family: cursive, "微软雅黑";
font-size: 13px;
background-color:#000
}
a{ color: transparent;
display: block;
text-transform: uppercase;
text-shadow: 0px 0px 2px #fff;}
</style>
<body bgcolor='#000'>
<a>阿萨德发生地方</a>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: