logo

  1. <style>
  2. /* 如果css加载不出来,可能因为网速慢,css加载不出来
  3. 如果css加载不出来,也可以让网页进行操作,有良好的体验,有一定的体验 */
  4. h1{
  5. margin: 0;
  6. }
  7. .logo {
  8. width: 142px;
  9. height: 58px;
  10. /*border: 1px solid #000;*/
  11. }
  12. .logo h1 .logo-hd{
  13. display: block;
  14. width: 142px;
  15. /* height: 58px; */
  16. height: 0;
  17. padding-top: 58px;
  18. background: url(./taobao.png) no-repeat 0 0/142px 58px;
  19. /* 图片如果链接找不到,可以直接截图,然后保存到本地 */
  20. overflow: hidden;
  21. }
  22. </style>
  23. <div class="logo">
  24. <h1>
  25. <a href="" class="logo-hd">
  26. 淘宝网
  27. </a>
  28. </h1>
  29. </div>

image.png
前端水很深,学不完,这些都是经验

  1. <style>
  2. h1{
  3. margin: 0;
  4. }
  5. .logo{
  6. width: 142px;
  7. height: 58px;
  8. border: 1px solid #000;
  9. }
  10. .logo h1 .logo-hd{
  11. display: block;
  12. width: 142px;
  13. height: 58px;
  14. background: url(https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png)
  15. no-repeat 0 0/142px 58px;
  16. }
  17. .box{
  18. width: 142px;
  19. padding-top: 58px;
  20. /* padding: 58px; */
  21. border: 1px solid #000;
  22. }
  23. .box2{
  24. width: 142px;
  25. padding: 58px;
  26. border: 1px solid #000;
  27. }
  28. </style>
  29. <div class="logo">
  30. <h1>
  31. <a href="" class="logo-hd">
  32. 淘宝网
  33. </a>
  34. </h1>
  35. </div>
  36. <div class="box"></div>
  37. <div class="box2"></div>

image.png

  1. <style>
  2. h1{
  3. margin: 0;
  4. }
  5. .logo{
  6. width: 142px;
  7. height: 58px;
  8. }
  9. .logo h1 .logo-hd{
  10. display: block;
  11. width: 142px;
  12. /* height: 58px; */
  13. height: 0;
  14. background: url(https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png)
  15. no-repeat 0 0/142px 58px;
  16. border: 1px solid #000;
  17. padding-top: 58px;
  18. overflow: hidden;
  19. }
  20. </style>
  21. <div class="logo">
  22. <h1>
  23. <a href="" class="logo-hd">
  24. 淘宝网
  25. </a>
  26. </h1>
  27. </div>

image.png
因为a logo-hd上有背景图片,a也有文本,图片在文本上面

没有div,h1,也可以实现效果,但最好有规范,h1利于seo

首先在a里面设置大小需要把a变成,block,之后照常设置,之后height设置为0

table

  1. <style>
  2. table {
  3. width: 300px;
  4. height: 300px;
  5. /* caption-side: bottom; */
  6. /* caption-side: top|bottom; */
  7. /* border-collapse: separation|collapse; */
  8. /* border-collapse: separation; */
  9. border-collapse: collapse;
  10. }
  11. </style>
  12. <table border="1">
  13. <caption>测试表格</caption>
  14. <tr>
  15. <td>1</td>
  16. <td>2</td>
  17. <td>3</td>
  18. </tr>
  19. <tr>
  20. <td>4</td>
  21. <td>5</td>
  22. <td>6</td>
  23. </tr>
  24. <tr>
  25. <td>7</td>
  26. <td>8</td>
  27. <td>9</td>
  28. </tr>
  29. <tr>
  30. <td>7</td>
  31. <td>8</td>
  32. <td>9</td>
  33. </tr>
  34. <tr>
  35. <td>7</td>
  36. <td>8</td>
  37. <td>9</td>
  38. </tr>
  39. </table>

image.png

  1. <style>
  2. table {
  3. width: 300px;
  4. height: 300px;
  5. /* caption-side: bottom; */
  6. /* caption-side: top|bottom; */
  7. /* border-collapse: separation|collapse; */
  8. /* border-collapse: separation; */
  9. border-collapse: collapse;
  10. /* table-layout: fixed; */
  11. /* table-layout: fixed| automatic; */
  12. /*无论字数有多少,可以让单元格大小一致,宽度一致,高度不一致*/
  13. }
  14. </style>
  15. <table border="1">
  16. <caption>测试表格</caption>
  17. <tr>
  18. <td>1</td>
  19. <td>2222 2222222222 22222222 2222222222
  20. 22</td>
  21. <td>3</td>
  22. </tr>
  23. <tr>
  24. <td>4</td>
  25. <td>5</td>
  26. <td>6</td>
  27. </tr>
  28. <tr>
  29. <td>7</td>
  30. <td>8</td>
  31. <td>9</td>
  32. </tr>
  33. <tr>
  34. <td>7</td>
  35. <td>8</td>
  36. <td>9</td>
  37. </tr>
  38. <tr>
  39. <td>7</td>
  40. <td>8</td>
  41. <td>9</td>
  42. </tr>
  43. </table>

image.png

  1. <style>
  2. table {
  3. width: 300px;
  4. height: 300px;
  5. /* caption-side: bottom; */
  6. /* caption-side: top|bottom; */
  7. /* border-collapse: separation|collapse; */
  8. /* border-collapse: separation; */
  9. border-collapse: collapse;
  10. /* table-layout: fixed; */
  11. /* table-layout: fixed| automatic; */
  12. /*无论字数有多少,可以让单元格大小一致,宽度一致,高度不一致*/
  13. }
  14. table tr td:nth-child(2){
  15. text-align: center;
  16. }
  17. table tr:nth-child(even){
  18. background-color: #eee;
  19. }
  20. table tr:hover{
  21. background-color: #ddd;
  22. }
  23. </style>
  24. <table border="1">
  25. <caption>测试表格</caption>
  26. <tr>
  27. <td>1</td>
  28. <td>2</td>
  29. <td>3</td>
  30. </tr>
  31. <tr>
  32. <td>4</td>
  33. <td>5</td>
  34. <td>6</td>
  35. </tr>
  36. <tr>
  37. <td>7</td>
  38. <td>8</td>
  39. <td>9</td>
  40. </tr>
  41. <tr>
  42. <td>7</td>
  43. <td>8</td>
  44. <td>9</td>
  45. </tr>
  46. <tr>
  47. <td>7</td>
  48. <td>8</td>
  49. <td>9</td>
  50. </tr>
  51. </table>

image.png

ul模拟表格

  1. <style>
  2. ul{
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .table{
  8. width: 300px;
  9. }
  10. .table li{
  11. float: left;
  12. width: 100px;
  13. height: 100px;
  14. background-color: antiquewhite;
  15. border: 1px solid #000;
  16. box-sizing: border-box;
  17. }
  18. </style>
  19. <ul class="table clearfix">
  20. <li>1</li>
  21. <li>1</li>
  22. <li>2</li>
  23. <li>2</li>
  24. <li>3</li>
  25. <li>3</li>
  26. </ul>

image.png

  1. <style>
  2. ul{
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .table{
  8. width: 300px;
  9. }
  10. .table li{
  11. float: left;
  12. width: 101px;
  13. height: 101px;
  14. background-color: antiquewhite;
  15. margin: -1px 0 0 -1px;
  16. border: 1px solid #000;
  17. box-sizing: border-box;
  18. }
  19. </style>
  20. <ul class="table clearfix">
  21. <li>1</li>
  22. <li>1</li>
  23. <li>2</li>
  24. <li>2</li>
  25. <li>3</li>
  26. <li>3</li>
  27. </ul>

image.png
多尝试代码,不用非要记住正确的直接怎么写,要知道思路,可以自己顺道思考着写出来
记住思路,之后可以自己写出来,而不是记住答案
1 ul去掉
2 li float变成内联块元素 可以设置width、height了,设置width、height、背景颜色边框查看效果,之后table类设置300px,查看效果。之后根据效果分析原因,再进行调整,再分析,再调整,以此类推
先把会的,可以直接看到效果的写上,之后再在此基础上调整,先有一个磨具,用磨具制造出模型,再在此基础上微调->调整->大调,依次进行

  1. <style>
  2. ul{
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .clearfix::after{
  8. content: "";
  9. display: table;
  10. clear: both;
  11. }
  12. .table{
  13. width: 300px;
  14. }
  15. .table li{
  16. /* 因为边框默认不会重合,会叠加,所以叠加了的边框就显得粗了,
  17. 处理方法让其重合,而不是叠加 */
  18. float: left;
  19. /* width: 100px;
  20. height: 100px; */
  21. width: 101px;
  22. height: 101px;
  23. /* margin-top: -1px;
  24. margin-left: -1px; */
  25. margin: -1px 0 0 -1px;
  26. border: 1px solid #000;
  27. box-sizing: border-box;
  28. }
  29. </style>
  30. <ul class="table clearfix">
  31. <li></li>
  32. <li></li>
  33. <li></li>
  34. <li></li>
  35. <li></li>
  36. <li></li>
  37. </ul>

image.png

  1. <style>
  2. ul {
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .clearfix::after {
  8. content: "";
  9. display: table;
  10. clear: both;
  11. }
  12. .table {
  13. width: 300px;
  14. }
  15. .table li {
  16. /* 因为边框默认不会重合,会叠加,所以叠加了的边框就显得粗了,
  17. 处理方法让其重合,而不是叠加 */
  18. /* float: left; */
  19. display: inline-block;
  20. /* width: 100px;
  21. height: 100px; */
  22. width: 101px;
  23. height: 101px;
  24. /* margin-top: -1px;
  25. margin-left: -1px; */
  26. /*虽然margin为0,但浏览器把li的换行解释成空格,所以还会空有间距,
  27. float可以消除空格的间距
  28. */
  29. /* margin: 0px; */
  30. margin: -1px 0 0 -1px;
  31. border: 1px solid #000;
  32. box-sizing: border-box;
  33. }
  34. </style>
  35. <ul class="table clearfix">
  36. <li></li><li></li>
  37. <li></li>
  38. <li></li>
  39. <li></li>
  40. <li></li>
  41. </ul>

image.png

方法2

video25min

  1. <style>
  2. ul{
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. /*不写 float塌陷,父级元素感受不到float子元素的大小,
  8. 导致父元素不会被子元素撑开*/
  9. .clearfix::after{
  10. content: "";
  11. display: table;
  12. clear: both;
  13. }
  14. .table{
  15. width: 300px;
  16. border-right: 1px solid #000;
  17. border-bottom: 1px solid #000;
  18. }
  19. .table li{
  20. float: left;
  21. width: 100px;
  22. height: 100px;
  23. border-top: 1px solid #000;
  24. border-left: 1px solid #000;
  25. box-sizing: border-box;
  26. }
  27. </style>
  28. <ul class="table clearfix">
  29. <li></li>
  30. <li></li>
  31. <li></li>
  32. <li></li>
  33. <li></li>
  34. <li></li>
  35. </ul>

image.png

子元素 border-box
父元素content这样好计算

video25.05

  1. <style>
  2. ul {
  3. padding: 0;
  4. margin: 0;
  5. list-style: none;
  6. }
  7. .clearfix::after {
  8. content: "";
  9. display: table;
  10. clear: both;
  11. }
  12. .box {
  13. width: 300px;
  14. overflow: hidden;
  15. }
  16. .table {
  17. /* width: 300px; */
  18. width: 303px;
  19. margin-left: -1px;
  20. border-right: 1px solid #000;
  21. border-bottom: 1px solid #000;
  22. }
  23. .table li {
  24. float: left;
  25. /* width: 100px; */
  26. width: 33.33%;
  27. height: 100px;
  28. border-top: 1px solid #000;
  29. border-left: 1px solid #000;
  30. box-sizing: border-box;
  31. }
  32. </style>
  33. <div class="box">
  34. <ul class="table clearfix">
  35. <li></li>
  36. <li></li>
  37. <li></li>
  38. <li></li>
  39. <li></li>
  40. <li></li>
  41. </ul>
  42. </div>

image.png
hidden的用法
先table width:302px
table li width 33.3%
margin-left:-1

BFC块级格式化上下文

  1. 普通流 normal flow
  2. 浮动流 float 脱离普通流
  3. 绝对定位布局 absolute positioning 脱离了整个文档流
  4. css2.1 常常在我们写布局样式时会产生问题,让人感觉匪夷所思,css2.1总结了这些问题,
  5. 给出了比较正规的解决方案,这叫BFC
  6. bfc是一个容器,属于普通流
  7. 设置以下属性的元素,具有BFC特性,是BFC元素
  8. BODY
  9. float: left right;
  10. position:absolute fixed;
  11. display:inline-block table-cell;
  12. overflow: hidden auto scroll;
  1. <!-- 普通流 normal flow
  2. 浮动流 float 脱离普通流
  3. 绝对定位布局 absolute positioning 脱离了整个文档流
  4. css2.1 常常在我们写布局样式时会产生问题,让人感觉匪夷所思,css2.1总结了这些问题,
  5. 给出了比较正规的解决方案,这叫BFC
  6. bfc是一个容器,属于普通流
  7. 设置以下属性的元素,具有BFC特性,是BFC元素
  8. BODY
  9. float: left right;
  10. position:absolute fixed;
  11. display:inline-block table-cell;
  12. overflow: hidden auto scroll; -->
  1. 普通流 normal flow<br /> 浮动流 float 脱离普通流<br /> 绝对定位布局 absolute positioning 脱离了整个文档流
  2. css2.1 常常在我们写布局样式时会产生问题,让人感觉匪夷所思,css2.1总结了这些问题,<br /> 给出了比较正规的解决方案,这叫BFC<br /> bfc是一个容器,属于普通流<br /> 设置以下属性的元素,具有BFC特性,是BFC元素<br /> BODY<br /> float: left right;<br /> position:absolute fixed;<br /> display:inline-block table-cell;<br /> overflow: hidden auto scroll;

margin合并

margin合并 100px

  1. <style>
  2. .box{
  3. width: 100px;
  4. height: 100px;
  5. }
  6. .box.box1{
  7. background-color: green;
  8. margin-bottom: 100px;
  9. }
  10. .box.box2{
  11. background-color: orange;
  12. margin-top: 100px
  13. }
  14. </style>
  15. <div class="box box1"></div>
  16. <div class="box box2"></div>

image.png

  1. <style>
  2. .container {
  3. overflow: hidden;
  4. }
  5. .box{
  6. width: 100px;
  7. height: 100px;
  8. }
  9. .box.box1{
  10. background-color: green;
  11. margin-bottom: 100px;
  12. }
  13. .box.box2{
  14. background-color: orange;
  15. margin-top: 100px
  16. }
  17. </style>
  18. <div class="container">
  19. <div class="box box1"></div>
  20. </div>
  21. <div class="container">
  22. <div class="box box2"></div>
  23. </div>

image.png
200px了,塌陷解决了,margin合并解决了

最好的方式是不解决

  1. <style>
  2. .container {
  3. overflow: hidden;
  4. }
  5. .box {
  6. width: 100px;
  7. height: 100px;
  8. }
  9. .box.box1 {
  10. background-color: green;
  11. /* margin-bottom: 100px; */
  12. }
  13. .box.box2 {
  14. background-color: orange;
  15. /* margin-top: 100px */
  16. margin-top: 200px;
  17. }
  18. </style>
  19. <div class="box box1"></div>
  20. <div class="box box2"></div>
  21. <!-- <div class="container">
  22. <div class="box box1"></div>
  23. </div>
  24. <div class="container">
  25. <div class="box box2"></div>
  26. </div> -->
  1. <style>
  2. .box{
  3. width: 200px;
  4. border: 10px solid #000;
  5. float: left;
  6. /*把父元素变成BFC就行了,但这样解决不好*/
  7. /* float: left;
  8. overflow: auto;
  9. position: absolute;
  10. position: fixed;
  11. display: inline-block;
  12. display: table-cell; */
  13. }
  14. .box1{
  15. float: left;
  16. width: 100px;
  17. height: 100px;
  18. background-color: green;
  19. }
  20. .box2{
  21. float: left;
  22. width: 100px;
  23. height: 100px;
  24. background-color: orange;
  25. }
  26. </style>
  27. <div class="box">
  28. <div class="box1"></div>
  29. <div class="box2"></div>
  30. </div>

image.png

margin塌陷

子元素带着父元素一块移动

  1. <style>
  2. .box1{
  3. width: 300px;
  4. height: 300px;
  5. background-color: #000;
  6. }
  7. .box2{
  8. width: 50px;
  9. height: 50px;
  10. margin: 0 auto;
  11. margin-top: 100px;
  12. background-color: orange;
  13. }
  14. </style>
  15. <div class="box1">
  16. <div class="box2"></div>
  17. </div>

image.png

  1. <style>
  2. .box1 {
  3. border-top: 1px solid transparent;
  4. width: 300px;
  5. height: 300px;
  6. background-color: #000;
  7. /* overflow: hidden;
  8. display: table-cell;
  9. float: left; */
  10. }
  11. .box2 {
  12. width: 50px;
  13. height: 50px;
  14. margin: 0 auto;
  15. margin-top: 100px;
  16. background-color: orange;
  17. }
  18. </style>
  19. <div class="box1">
  20. <div class="box2"></div>
  21. </div>

image.png

  1. <style>
  2. .box1{
  3. float: left;
  4. width: 100px;
  5. height: 100px;
  6. background-color: #000;
  7. }
  8. .box2{
  9. width: 200px;
  10. height: 200px;
  11. background-color: orange;
  12. }
  13. </style>
  14. <div class="box1">我是FLOAT</div>
  15. <div class="box2">我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元
  16. 我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元素</div>

image.png
与图片环绕一样
加了float属性,就变成了内联块级元素了

  1. <style>
  2. .box1{
  3. float: left;
  4. width: 100px;
  5. height: 100px;
  6. background-color: #000;
  7. }
  8. .box2{
  9. display: table-cell;
  10. width: 200px;
  11. height: 200px;
  12. background-color: orange;
  13. }
  14. </style>
  15. <div class="box1">我是FLOAT</div>
  16. <div class="box2">我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元
  17. 我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元素我是可怜的元素</div>

image.png

总结

BFC能解决什么问题
1 margin合并问题
2 浮动流造成父级元素坍塌的问题
3 margin塌陷问题
4 浮动元素覆盖的问题

css书写顺序

  1. css书写顺序<br /> 显示属性:display,position,float,clear<br /> 自身属性: width,height,margin,padding,border,background<br /> 文本属性:color,font,text-align,vertical-align,whitespace<br /> 其他<br /> <br /> 不用严格要求按照这样的顺序,但最基本的顺序要遵守

font简写

  1. font-style font-weight font-size line-height font-family<br /> font:italic bold 12px/20px "微软雅黑"
  1. <!-- font-style font-weight font-size line-height font-family
  2. font:italic bold 12px/20px "微软雅黑" -->
  3. <style>
  4. p{
  5. font: italic bold 12px/20px "微软雅黑";
  6. }
  7. </style>
  8. <p> font-style font-weight font-size line-height font-family
  9. font:italic bold 12px/20px "微软雅黑"</p>

image.png

其它

  1. <style>
  2. div{
  3. /* 不写0.9,写.9 */
  4. opacity: 0.9;
  5. opacity: .9;
  6. /* 写复合值 */
  7. margin: 1px 2px 3px 4px;
  8. /* rgb 00-ff 简写
  9. ff00ff f0f
  10. ff4400 f40
  11. */
  12. }
  13. </style>

选择器最基本的命名方法

  1. 选择器复合单词 中横线
  2. JS钩子ID 复合单词 符合单词 下划线
  3. 选择器 小写
  4. 尽可能英文
  5. header hd nav sidebar
  6. btn button
  7. 尽量不要用 bottom top left right 直观命名法 这是直观命名法
  8. 应该结构化命名
  9. 结构化标签:
  10. header hd nav sidebar
  11. btn button
  12. 英文结构化标签浏览器支持不是特别好,用的不安全,所以div命名
  13. div header hd nav sidebar
  1. 选择器复合单词 中横线
  2. JS钩子ID 复合单词 符合单词 下划线<br /> 选择器 小写<br /> 尽可能英文<br /> header hd nav sidebar<br /> btn button<br /> 尽量不要用 bottom top left right 直观命名法 这是直观命名法<br /> 应该结构化命名<br /> 结构化标签:<br /> header hd nav sidebar<br /> btn button<br /> 英文结构化标签浏览器支持不是特别好,用的不安全,所以div命名<br /> div header hd nav sidebar