background-image:背景图片 padding:层的边框到层的内容之间的空白 border:边框 content:内容 接下来将讲述HTML和CSS的关键——盒子模型(Box model)。理解Box model的关键便是margin和padding属性,而正确理解这两个属性也是学习用css布局的关键。 注: 为什么不翻译margin和padding? 原因一: 在汉语中并没有与之相对应...
* { padding:0; margin:0; } #ID1 { background-color: #333; color: #FFF; margin-top: 10px; margin-bottom: 10px; } #ID2 { font: normal 14px/1.5 Verdana, sans-serif; margin-top: 30px; margin-bottom: 30px; border: 1px solid #F00; } 代码解释: 1. 在html写入的代码表示, 在...
1.padding-box : 从padding区域开始显示背景图像。(默认值) 2.border-box : 从border区域开始显示背景图像。 3.content-box : 从content 区域开始显示背景图像 九、复合属性 语法:background : [background-color]背景颜色 | [background-image] 背景图片| [background-position]背景定位 | [background-size]背...
如果我将wrapper2的background-color: inherit;声明代码注释打开的话,那么在wrapper2和child中都会应用到wrapper1中所设置的背景颜色,这点和background-image道理相同。 background-origin 指定了背景图片原点相对于背景容器的位置,默认值为padding-box,表示和padding区域的原点对齐 border-box 背景图片会和容器的border原...
background-origin: border-box; 从边框区域开始显示背景,背景会延伸到外边界的边框,但边框在上,背景在下。 background-origin: padding-box; 从补白区域开始显示背景,背景延伸到最外边界的padding,边框不会有背景出现。 background-origin: content-box; 仅在内容区显示背景。
padding: 0; } div { position: absolute; height: 100vh; width: 100vw; } .day { background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2613&q=80"); ...
如果我将wrapper2的background-color: inherit;声明代码注释打开的话,那么在wrapper2和child中都会应用到wrapper1中所设置的背景颜色,这点和background-image道理相同。 background-origin 指定了背景图片原点相对于背景容器的位置,默认值为padding-box,表示和padding区域的原点对齐 ...
background-image:用于设置背景图片。 background-repeat:用于设置背景图片的重复方式。 background-position:用于设置背景图片的位置。 盒模型属性盒模型是CSS布局的基础,它包括元素的内容、边框、内边距和外边距等部分。常用的盒模型属性包括: width和height:用于设置元素的宽度和高度。 padding:用于设置内边距。 margin...
background-image用于给盒子添加图片的背景修饰,默认加载到边框及以内部分,如果图片不重复加载,则加载从border以内开始,属性值是url(图片路径),uniform resource locator,统一资源定位符,括号内书写查找图片的路径。 背景图和背景颜色可以同时设置,背景图会压盖背景颜色,没有背景图的区域会显示背景颜色。
body {margin: 0;padding: 0;}div {position: absolute;height: 100vh;width: 100vw;}.day {background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2613&q=80");background-size: cover;background...