5.16文本样式,列表样式,背景样式

Posted on 2023-05-16 14:54  liuxin6de1b  阅读(37)  评论(0)    收藏  举报

文本装饰:

text-decotation:overline文本上出现上划线

text-decoration:line-through文本出现删除线

text-decoration:underline文本出现下划线           

垂直对齐方式

vertical-align:top顶部对齐 vertical-align:middle中部对齐vertical:bottom底部对齐

文本阴影:text=-shadow:{2px 2px rgb(00,00,255);}第一个px越大阴影向右边移的距离越远,可以为负值,负值就是向左移;第二个px越大阴影向下移的距离越远,可以为负值,负值就是向上移

超链接伪类:鼠标移动到链接上背景色会被改变:hover 例子:a:hover{background:red;}这里也可以改成鼠标移上去,字体大小改变,或者字体样式改变。

列表样式:li{list-styel:noen;}去除列表文本前面的符号;<style>li{list-style:none;}</style>

背景样式:

背景颜色:{background-color:red;}

背景图像:{background-image:url();}url中是背景图像地址

背景重复:{background-repeat:repeat-x;}背景图像水平平铺

                  {background-repeat:repeat-y;}背景图像垂直平铺

                注意:要背景重复,那一定得有背景图像;也可以选择不平铺。不平铺的结构:{background-repeat:no-repeat;}

背景定位:背景图片布置在网页中的位置

结构:body{background-image:url();background-repeat:no-repeat;background-attachment:fixed;background-position:center;}也可以居左(left)居右(right)左上(lefttop)

右下(rightbottom)

 

博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3