您现在的位置:首页 >> 前端 >> 内容

CSS3文本效果

时间:2015/10/16 9:49:59 点击:

  核心提示:CSS3文本效果实例1:文本阴影:!DOCTYPE htmlhtmlheadmeta charset=utf-8titleCSS3 自动换行/titlestyle p.test{width:11em;...
CSS3文本效果实例1:

文本阴影:

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 自动换行</title>
<style> 
p.test{
width:11em;
border:1px solid #000000;
word-wrap:break-word;
}
</style>
</head>
<body>
<p class="test">This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</p>
</body>
</html>

 

 

实例二:CSS3自动换行

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 自动换行</title>
<style> 
p.test{
width:11em;
border:1px solid #000000;
word-wrap:break-word;
}
</style>
</head>
<body>
<p class="test">This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</p>
</body>
</html>

 

 

Tags:CS SS S3 3文 
作者:网络 来源:不详
  • 上一篇:CSS盒子效果
  • 下一篇:CSS3-图片悬停抖动