Blogger Information
Blog 20
fans 0
comment 0
visits 10801
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
字体图标、布局原理一级盒模型实例操作
麦兜的故事
Original
513 people have browsed it

字体图标

预览效果

字体图标,关键代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>字体图标</title>
  6. <!-- <link rel="stylesheet" href="font_icon/iconfont.css"> -->
  7. <link rel="stylesheet" type="text/css" href="css/style.css">
  8. </head>
  9. <body>
  10. <!-- 第一步找到素材网站 -->
  11. <!-- 第二步通过素材网站下载素材代码,解压素材包,放置代码文件夹中 -->
  12. <!-- 第三步通过代码中.html文件中类提示,去引入素材代码 -->
  13. <!-- 第四步通过link引入,在body中添加图标素材,放入图标类名称 -->
  14. <!-- 如果需要把图标单独放在一个文件中引入,需要把单独添加一个css文件,通过引入这个css文件来实现,在css文件中选中代码素材文件:@import url();实现 -->
  15. <span class="iconfont icon-shoucang"></span>
  16. </body>
  17. </html>
  18. ``````css
  19. @import url(../font_icon/iconfont.css);
  20. /*设置图标样式*/
  21. .icon-shoucang{color: #ff6700;font-size: 2em;}

布局的原则

宽度受限,高度无限

元素的默认排列方式

默认排列方式是从左到右,从上到下,一行没有空间的时候,会从下一行继续排列

元素的类型

元素的类型分为两类,一类是内联元素,一类是块元素内联元素是按照从左到右的方式进行排列,一行没有空间时,会从下一行继续排列。默认属性是:display:inline。块元素是独占一行,即使一行内还有空间,也会从下一行排列。默认属性是:display:block。

盒模型常用属性

宽度:width;高度:heigth;边框:border;外边距:margin;内边距:padding;

展示效果

相关代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>盒模型</title>
  6. <style type="text/css">
  7. *{
  8. margin: 0;
  9. padding: 0;
  10. box-sizing: border-box;
  11. }
  12. div{
  13. width: 200px;
  14. height: 200px;
  15. border: 1px solid #ccc;
  16. margin: 20px;
  17. padding: 50px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div>我是模型</div>
  23. </body>
  24. </html>

box-sizing属性的解决了

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post