当前位置:   article > 正文

div网页布局(做一个简单网页界面为例)_div网页布局模板

div网页布局模板

目录

1目标:

 2例子部分讲解:

  3例子部分讲解:

 4完整代码:


1目标:

做一个简易的网页,分为多个模块,背景设置为自己喜欢的图片。添些图片和文字链接跳转,整体排列居中。

网页布局用到的工具 CSS样式

eg:在<haed>中添加这个代码<style type="text/css">才可进行CSS工具的使用。

 2例子部分讲解

如下这个代码主要是用来划分模块,确定位置,确定边框颜色等操作。放在<head>中间。这种模式又称为内部样式表,详情看上篇文件介绍。

  1. div{
  2. border:1px dashed rgb(245, 240, 240);
  3. width:500px;
  4. margin-bottom:10px;
  5. position: relative;
  6. left: 400px;
  7. }

  3例子部分讲解:

main_border是我们自己定义的一个id。在这边我们用到一个新的知识点就是  #+id{ 样式设置 }中间的样式设置根据自己需要进行调配。

  1. #main_border{
  2. background-color: white;
  3. width: 100px;
  4. height: 250px;
  5. float: left;
  6. opacity: 0.7;
  7. }

4完整代码:

       现在将整体架构搭建起来,设置网页标题(根据自己喜好设置),然后先将每块区域内容进行编辑,最后再进行模块位置的调整与优化。下面为搭建好的完整页面。样式也是采用内联式无需再新建文件。(当代码过多时还是建议用外链 式。)这边先简单的演示一下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>小米官网</title>
  6. <style type="text/css">
  7. div{
  8. border:1px dashed rgb(245, 240, 240);
  9. width:500px;
  10. margin-bottom:10px;
  11. position: relative;
  12. left: 400px;
  13. }
  14. #menu{ /* 前边加#号就是用来id来选择这个标签 */
  15. background-color: rgb(30, 112, 184);
  16. height: 50px;
  17. width: 500px;
  18. opacity: 0.7;
  19. }
  20. #side_bar{
  21. background-color: palevioletred;
  22. height: 250px;
  23. width: 100px;
  24. float: left;/*从左往右浮动排列*/
  25. }
  26. #content_box{
  27. background-color:powderblue ;
  28. height: 250px;
  29. width: 300px;
  30. float: left;/*从左往右浮动排列*/
  31. }
  32. #main_border{
  33. background-color: white;
  34. width: 100px;
  35. height: 250px;
  36. float: left;
  37. opacity: 0.7;
  38. }
  39. #footer{
  40. background-color: rgb(122, 122, 234);
  41. height: 50px;
  42. width: 500px;
  43. clear: both; /*不按浮动列排*/
  44. opacity: 0.7;
  45. }
  46. </style>
  47. </head>
  48. <body background="C:\Users\1\Pictures\Saved Pictures\2.webp">
  49. <div id="menu">
  50. <p>首页</p>
  51. <p>电视</p>
  52. </div>
  53. <div id="side_bar">
  54. <ul>
  55. <li>手机</li>
  56. <li>电视</li>
  57. <li>小家电</li>
  58. <li>IOT</li>
  59. </ul>
  60. <br/>
  61. <img src="C:\Users\1\Pictures\Saved Pictures\aa.jpg" width="70">
  62. </div>
  63. <div id="content_box">
  64. <h2>大广告</h2>
  65. <img src="C:\Users\1\Pictures\Saved Pictures\11.jpg" width=20%>
  66. </div>
  67. <div id="main_border">
  68. <h4>五彩大铁猿个人界面</h4>
  69. <ol>
  70. <li> 数据分析</li>
  71. <li>物联网云平台设计</li>
  72. <li>python</li>
  73. </ol>
  74. <a href="https://blog.csdn.net/weixin_47314602?type=blog" target="_blank">点这里跳转主页面</a>
  75. </div>
  76. <div id="footer">
  77. <h3>footer...</h3>
  78. </div>
  79. </body>
  80. </html>

      由于做的是简易版,没啥广告可放的,就放了一个动态图片 上去。模块整体也是比较简易,还需后期的学习完善。

 代码运行结果图:

 


 

 如果觉得有用点个关注加收藏吧,以防后期找不到啦。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/325560
推荐阅读
相关标签
  

闽ICP备14008679号