背景、颜色、图片样式

来源:互联网 发布:公司网络网络架构图 编辑:程序博客网 时间:2024/04/28 09:38

index.html

<html><head><title>CSS属性</title><meta content="text/html;charset=UTF-8"/><style>div{width:50px;height:50px;}#div1{/*背景颜色*/background-color:#C00000;}#div2{/*背景图片*/background-image:url(1.jpg);/*背景图片大小*/background-size:100% 100%;}#div3{/*背景图片*/background-image:url(1.jpg);/*背景图片铺排方式 no-repeat:不平铺、repeat-x、repeat-y、repeat、round:背景图像自动缩放填充整个容器(CSS3)*/background-repeat:round;}</style></head><body><div id="div1"></div><div id="div2"></div><div id="div3"></div></body></html>


阅读全文
0 0
原创粉丝点击