列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26

一、列表样式练习

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第1张图片




    
    列表样式
    





div{
    width: 250px;
    background: #eeeff1;
}
.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 35px;
    background: red;
}
ul li{
    /*background: #eeeff1;*/
    text-indent: 1em;
    list-style: none;
}
a{
    color: #000000;
    text-decoration: none;
}
a:hover{
    color: #c907ff;
    text-decoration: underline;
}

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第2张图片

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第3张图片

二、背景图像应用及渐变

2.1背景颜色、背景图片

background-repeat: repeat-x




    
    Title
    


列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第4张图片
列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第5张图片
列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第6张图片

2.2练习

重要代码:

    background: red url("../images/向下.png") 230px 10px no-repeat;
	background-image: url("../images/向右.png");
    background-repeat: no-repeat;
    background-position: 190px 2px;

完整代码

div{
    width: 250px;
    background: #eeeff1;
}
.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 35px;
    background: red url("../images/向下.png") 230px 10px no-repeat;

}
ul li{
    /*background: #eeeff1;*/
    text-indent: 1em;
    list-style: none;
    background-image: url("../images/向右.png");
    background-repeat: no-repeat;
    background-position: 190px 2px;

}
a{
    color: #000000;
    text-decoration: none;
}
a:hover{
    color: #c907ff;
    text-decoration: underline;
}

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第7张图片

2.3渐变




    
    Title






列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第8张图片

三、盒子模型

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第9张图片

3.1什么是盒子模型

margin:外边距
padding:内边距
border:边框

3.2边框

3.2.1边框的粗细、边框的样式、边框的颜色




    
    Title
    


会员登录

用户名
密码
手机号

列表样式练习、背景图像应用及渐变、盒子模型 2022-1-26_第10张图片

你可能感兴趣的:(笔记,css,html,css,javascript)