继承

  1. <style>
  2. div {
  3. color: pink;
  4. font-size: 14px;
  5. }
  6. </style>
  7. <div>
  8. <p>龙生龙,凤生凤</p>
  9. </div>

image.png
子元素继承父元素的属性
子标签会继承父标签的某些样式,如文本颜色和字号,不是所有样式都继承
texr-、font-、line-这些元素开头的可以继承,以及color属性
基本上都是与文字相关的可以继承,背景图片、hover等不能继承

  1. <style>
  2. /*给body设置,body中所以子元素都继承*/
  3. body {
  4. color: pink;
  5. /* font: 12px/24px 'Microsoft YaHei'; */
  6. font: 12px/1.5 'Microsoft YaHei';
  7. }
  8. div {
  9. /* 子元素继承了父元素 body 的行高 1.5 */
  10. /* 这个1.5 就是当前元素文字大小 font-size 的1.5倍 所以当前div 的行高就是21像素 */
  11. font-size: 14px;
  12. }
  13. p {
  14. /* 1.5 * 16 = 24 当前的行高 */
  15. font-size: 16px;
  16. }
  17. /* li 么有手动指定文字大小 则会继承父亲的 文字大小 body 12px 所以 li 的文字大小为 12px
  18. 当前li 的行高就是 12 * 1.5 = 18
  19. */
  20. </style>
  21. <div>粉红色的回忆</div>
  22. <p>粉红色的回忆</p>
  23. <ul>
  24. <li>我没有指定文字大小</li>
  25. </ul>

height100%

  1. <style>
  2. .bigbox{
  3. width: 200px;
  4. height: 200px;
  5. padding: 10px;
  6. box-sizing: border-box;
  7. border: 1px solid #000000;
  8. }
  9. .box{
  10. width: 100%;
  11. height: 100%;
  12. box-sizing: border-box;
  13. border: 1px solid red;
  14. }
  15. </style>
  16. <div class="bigbox">
  17. <div class="box"></div>
  18. <div class="box"></div>
  19. </div>

image.png
width、height 100%计算父元素的padding,设置父元素固定的width,固定的padding,子元素width100%好计算,如果子元素需要写固定的width …px,就得写178.667px,并且随着父元素width与padding变化也得变化,改一个得改所有
image.png

width的“继承”

  1. <style>
  2. .father{
  3. width: 200px;
  4. height: 200px;
  5. background-color: green;
  6. }
  7. .son{
  8. height: 100px;
  9. background-color: red;
  10. }
  11. </style>
  12. <div class="father">
  13. <div class="son"></div>
  14. </div>

image.png
div是块级元素,默认占满一行,在html里占满整行,占满父元素的宽度,受padding影响,不会加入padding的尺寸,就相当于block块级元素,默认有个width100%,之后块级元素可以不写width,只写height,在设置好width、height的父元素中
这不是继承父元素的宽度,与继承父元素宽度不一样

image.png
image.png

float、定位元素的影响

  1. <style>
  2. .father{
  3. width: 200px;
  4. height: 200px;
  5. background-color: green;
  6. }
  7. .son{
  8. /*有影响,变成了类似行内块元素,被内容撑大,没有内容width为0*/
  9. /*float: left;*/
  10. position: absolute;
  11. /*与上图一致无影响,width100%*/
  12. /*position: relative;*/
  13. height: 100px;
  14. background-color: red;
  15. }
  16. </style>
  17. <div class="father">
  18. <div class="son">我是子元素</div>
  19. </div>

image.png

  1. <style>
  2. .father{
  3. width: 200px;
  4. height: 200px;
  5. background-color: green;
  6. }
  7. .son{
  8. /*有影响,变成了类似行内块元素,被内容撑大,没有内容width为0*/
  9. float: left;
  10. /*position: absolute;*/
  11. /*与上图一致无影响,width100%*/
  12. /*position: relative;*/
  13. height: 100px;
  14. width: 100%;
  15. background-color: red;
  16. }
  17. </style>
  18. <div class="father">
  19. <div class="son">我是子元素</div>
  20. </div>

image.png
float时,width100%可以

  1. <style>
  2. .father{
  3. position: relative;
  4. width: 200px;
  5. height: 200px;
  6. background-color: green;
  7. }
  8. .son{
  9. /*有影响,变成了类似行内块元素,被内容撑大,没有内容width为0*/
  10. /*float: left;*/
  11. position: absolute;
  12. /*与上图一致无影响,width100%*/
  13. /*position: relative;*/
  14. height: 100px;
  15. width: 100%;
  16. background-color: red;
  17. }
  18. </style>
  19. <div class="father">
  20. <div class="son">我是子元素</div>
  21. </div>

image.png
绝对定位时,width100%会和第一个父级定位元素一致,会参照第一个父级定位元素,如果这里father不设置定位,son的width100%会占满整个界面,和body宽度一样

son设置为fixed,效果如下图
image.png

background-color覆盖

padding、width都会覆盖,不包括border、margin的其它

绝对定位 padding width100%

  1. <style>
  2. .bigbox {
  3. /*overflow: hidden;*/
  4. position: relative;
  5. width: 200px;
  6. height: 200px;
  7. padding: 30px;
  8. box-sizing: border-box;
  9. border: 1px solid #000000;
  10. /*background-color: #00a4ff;*/
  11. }
  12. .box {
  13. /*overflow: hidden;*/
  14. /*float: left;*/
  15. position: absolute;
  16. width: 100%;
  17. height: 100%;
  18. box-sizing: border-box;
  19. border: 1px solid red;
  20. padding: 10px;
  21. background-color: #00a4ff;
  22. }
  23. .other {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. </style>
  28. <div class="bigbox">
  29. <div class="box"></div>
  30. <!-- <div class="box"></div>-->
  31. </div>

image.png
absolute会近乎等于父元素的整个width,与预想的下图并不一致,float则不会产生这种影响
image.png

  1. <style>
  2. .bigbox {
  3. /*overflow: hidden;*/
  4. position: relative;
  5. width: 200px;
  6. height: 200px;
  7. padding: 30px;
  8. box-sizing: border-box;
  9. border: 1px solid #000000;
  10. /*background-color: #00a4ff;*/
  11. }
  12. .box {
  13. /*overflow: hidden;*/
  14. float: left;
  15. /*position: absolute;*/
  16. width: 100%;
  17. height: 100%;
  18. box-sizing: border-box;
  19. border: 1px solid red;
  20. padding: 10px;
  21. background-color: #00a4ff;
  22. }
  23. .other {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. </style>
  28. <div class="bigbox">
  29. <div class="box"></div>
  30. <div class="box"></div>
  31. </div>

image.png
float会计算父元素的宽度,在父·
元素的宽度的基础上横向排列,如果父元素宽度不够了则纵向排列