⼩程序的布局css样式
⼩程序的布局css样式
width: fit-content;
font-size:20px; /*设置⽂字字号*/
color:red; /*设置⽂字颜⾊*/
font-weight:bold; /*设置字体加粗*/
border:1px solid red;/*添加边框样式(粗细为1px,颜⾊为红⾊的实线)*/
font-family:"宋体"; /*设置字体为宋体*/
font-style:italic; /*⽂字排版--斜体*/
text-decoration:underline; /*⽂字排版--下划线*/
text-decoration:line-through;/*⽂字排版--删除线*/
text-indent:2em; /*段落排版--缩进*/
line-height:1.5em; /*段落排版--⾏间距(⾏⾼)*/
letter-spacing:50px; /*段落排版--中⽂字间距*/
word-spacing:50px; /*字母间距*/
text-align:center; right ; left ; /*段落排版--对齐*/
display:inline-flex; /*将对象作为内联块级弹性伸缩盒显⽰*/
display:block; /*设置为块状元素*/
display:inline; /*设置为内联元素*/
display:inline-block; /*设置为内联块状元素*/
box sizingword-break:keep-all; /* 不换⾏ */
white-space:nowrap; /* 不换⾏ */
vertical-align:middle; /*把此元素放置在⽗元素的中部。*/
border-style(边框样式)常见样式有:(border-color,border-width)边框相关设置
dashed(虚线)| dotted(点线)| solid(实线)。
border-bottom border-top border-right border-left 上下左右线单独设置
box-sizing: border-box; //当使⽤padding的时候不影响⼤⼩
padding-top padding-right padding-bottom padding-left
margin-top margin-right margin-bottom margin-left (margin:10px 10px 10px 10px; top、right、bottom、left)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论