首页前端开发CSSCSS实现段落首字母,首字放大特效,效果非常不错

CSS实现段落首字母,首字放大特效,效果非常不错

时间2024-05-24 00:20:03发布访客分类CSS浏览69
导读:段落首字母放大是指放大段落开头的字母或者汉字,主要使用了css的first-letter伪类选择器。 单行放大: 在第一行内放大,效果如下: 复制代码 代码如下: Document body { background-c...

段落首字母放大是指放大段落开头的字母或者汉字,主要使用了css的first-letter伪类选择器。

单行放大:

  在第一行内放大,效果如下:

复制代码 代码如下:




Document

body {
background-color: #FFFFFF;
color: #595959;
}
.contain {
width: 150px;
}
.contain p {
font: 80%/1.6 Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.contain p:first-letter {
font-size: 2em;
padding: 0.1em;
color: #000000;
vertical-align: middle;
}
.contain p:first-line {
color: red;
}
.contain p:first-child:first-letter {
color: red;
}
.contain p:first-child:first-line {
color: inherit;
}




This is a test article. This is a test article.


This is a test article. This is a test article.


这是一个测试




注意:first-letter支持IE7+,first-line支持IE8+

多行放大:

  效果如下:

复制代码 代码如下:




Document




* {
margin:0;
padding:0;
}
body {
font-size:12px;
font-family: Tahoma, Geneva, sans-serif;
padding:200px;
}
p {
width:150px;
color:#000;
font-size:1em;
margin-bottom: 20px;
}
p:first-letter{
float: left;
font-size:2.5em;
padding-right:5px;
text-transform:uppercase;
}
p:first-line{
color:#f00;
}

This is a test article. This is a test article.This is a test article. This is a test article.This is a test article. This is a test article.


这是一个测试。这是一个测试。这是一个测试。这是一个测试。这是一个测试。这是一个测试。这是一个测试。



声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: CSS实现段落首字母,首字放大特效,效果非常不错
本文地址: https://pptw.com/jishu/666663.html
再次更新升级WordPress 5.0.1 安全漏洞尽快更新 Grid布局教程之网格单元格布局

游客 回复需填写必要信息