其他分享
首页 > 其他分享> > 背景图片及应用

背景图片及应用

作者:互联网

.div1{
background-repeat: repeat-x;
}
.div2{
background-repeat: repeat-y;
}
.div3{
background-repeat: no-repeat;
}

渐变色



盒子模型

 


 

margin 外边距
padding 内边距
border 边框的颜色

2;边框
1,边框的粗细
2,边框的样式
3,边框的颜色


<style>

<!--body 总有一个默认的外边框距 marg:0 -->
h1,ul,li,a, boby{
margin: 0px;
padding: 0px;
text-decoration: none;
}

/*border:粗细,样式,颜色*/
#box{
width:300px;
border: 1px solid red;
}

h2{
font-size: 16px;
background: #02ff00;
line-height: 30px;
}


form{
background: cyan;
}
div:nth-of-type(1) input{
border: 3px solid black;
}
div:nth-of-type(2) input{
border: 3px dashed gold;
}
div:nth-of-type(3) input{
border: 3px dashed hotpink;
}


</style>

边距
padding 0 0 0 0 ;












标签:repeat,应用,type,边框,background,input,border,背景图片
来源: https://www.cnblogs.com/xyzaa/p/16341062.html