01-同时使用背景图片和背景颜色?
1 | .test{background:url("图片链接") center center no-repeat; background-color:#000;} |
1 | .test{background:url("图片链接") #000000 center center no-repeat;} |
- 背景图片需要在背景颜色之前;
- 需要设置多个值时使用background,只需图片链接时可直接用background-img链接;
02-line-height 和 height会传递给子级
03-font
可以按顺序设置如下属性:
- font-style
- font-variant
- font-weight
- font-size/line-height
- font-family
04-text-align: center;
这个属性是用来对齐行内内容的,所以,==不应该对块级内容起作用==。
块状元素用==margin: 0 auto;==
05-box-sizing
跟正常盒子一样,从边框接触处算起,不占边框
06-tab切换
1 | .goods_tab{float: right;height: 34px;margin-top: 5px;border:1px solid #ededed;border-bottom: none;z-index: 1;line-height: 34px;} |