版权声明:原创文章,欢迎任何形式的转载,但请务必注明出处~ https://blog.csdn.net/abs1004/article/details/78223269
首行缩进 .wxss 代码如下:
1
2
3
4
5
//首行缩进20rpx
取消首行缩进
1
2
3
4
5
// 取消首行缩进,在小程序里光靠 text-indent:0rpx是不够的,必须加上 padding-left:0rpx;
欢迎各位兄弟 发布技术文章
这里的技术是共享的
首行缩进20rpx .wxss 代码如下:
#packInfo .couintro text {
font-size: 28rpx;
padding: 0 56rpx; /* 56 / 28 = 2个缩进字 */
}
view {
font-size: 28rpx;
text-indent: 56rpx;
text-align: left;
}
小礼物走一走,来简书关注我
首行缩进 .wxss 代码如下:
1
2
3
4
5
//首行缩进20rpx
取消首行缩进
1
2
3
4
5
// 取消首行缩进,在小程序里光靠 text-indent:0rpx是不够的,必须加上 padding-left:0rpx;