小编给大家分享一下小程序中text文本组件怎么用,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
在微信小程序中,组件 text 用来显示文本,基本使用代码如下:
<text >测试使用</text>
1、基本样式设置
基本使用还是比较简单的,下面咱们来论述一下文本样式的设置,首先是给他设置一个 class
<text class="text">测试使用</text>
然后在对应的 wxss 文件中编写样式,对于字体来说 常用的就是字体大小、颜色、粗细的配置
.text { font-size: 20px; color: red; font-weight: bold;}
font-weight:设置文本字体的粗细。取值范围为100-900,取值:mormal:正常大小相当于400。bold :粗体,相当于700
2、边框设置
border-width:设置边框宽度:常用取值:medium:默认值,相当于3px。thin:1px。thick:5px。不可以为负值。
border-color:设置边框颜色。
border-top:设置顶部边框。
border-top-width,border-top-style,border-top-color 分别设置 宽度,样式以及颜色
border-right:设置右边框。
border-bottom:设置底边框。
border-left:设置左边框
border-radius:设置对象使用圆角边框。取值为数字或者百分比。
border-style(边框样式)常见样式有: (border-color,border-width) 边框相关设置
dashed(虚线)| dotted(点线)| solid(实线)。
.text { font-size: 20px; color: red; font-weight: bold; border-color: blue; border-width:3px; border-style: solid; }
例如还可以设置一下边框圆角以及内外边距
.text { font-size: 20px; color: red; font-weight: bold; border-color: blue; border-width:3px; border-style: solid; padding: 10px; margin: 10px ; border-radius: 2px 4px 10px 20px;}
3、设置斜体
通过font-style来设置,取值:normal 正常的字体, italic 斜体字, oblique 倾斜的字体。
.text2{font-style:italic;}
4、设置下划线
text-decoration:underline; text-decoration:line-through;
text-decoration:line-through;
5、长文本段落的排版
.text2 { text-indent: 2em; line-height: 1.5em; letter-spacing: 1px; word-spacing: 4px; text-align: left;}
看完了这篇文章,相信你对“小程序中text文本组件怎么用”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!