0409 css文本属性

来源:互联网 发布:大理石数据异形磨边机 编辑:程序博客网 时间:2024/06/05 23:39
文本字体颜色
color: red;
文本字体大小
font-size: 30px;
行高 单行字体占用的高度px %
line-height: 50px;
两端对齐justify,左对齐(默认)left=start,右对齐right=end,居中center
text-align: justify;
字符间距  px、normal
letter-spacing: normal;
文本修饰  上划线overline,中划线line-through,下划线underline
text-decoration: none;
溢出  auto自动、hidden隐藏
overflow: hidden;
不换行
white-space: nowrap;
显示...
text-overflow: ellipsis;
以上3个属性配合实现单行超出文本隐藏,显示...
文本阴影  x方向偏移 y方向偏移 颜色
text-shadow: 2px 2px black;
文本描边  宽度 颜色
text-stroke: 2px yellow;
相对单位  缩进text-indent: 2em;
        #id{            /*通过设置文本的行高和外部容器一致,实现文本垂直居中*/            width: 200px;            height:100px;            border: solid 1px  red;            text-align: center;            line-height: 100px;        }   


0 0