博主信息
博文 19
粉丝 0
评论 0
访问量 13317
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
CSS_0702作业
bloght5386
原创
551人浏览过

1. 制作一个在线QQ客服的固定定位(QQ客服用图片就行);

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <style type="text/css">
  7. #image {
  8. position: fixed;
  9. top: 5rem;
  10. left: 10rem;
  11. width: 10px;
  12. height: 150px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="image">
  18. <img src="./12.PNG" >
  19. </div>

2. 仿课堂案例写一个三行三列的定位布局, 色块或边框代表内容就可以;

  1. <!DOCTYPE html>
  2. <html>
  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. body {
  13. font-size: 16px;
  14. }
  15. header,footer {
  16. height: 5em;
  17. background-color: darkseagreen;
  18. }
  19. .container {
  20. position: relative;
  21. width: 1200px;
  22. height: 500px;
  23. margin: 0 auto;
  24. }
  25. .container aside:first-of-type {
  26. position: absolute;
  27. left: 0;
  28. top: 0;
  29. width: 320px;
  30. height: 500px;
  31. background-color: royalblue;
  32. }
  33. .container aside:last-of-type {
  34. position: absolute;
  35. right: 0;
  36. top: 0;
  37. width: 320px;
  38. height: 500px;
  39. background-color: royalblue;
  40. }
  41. .container main {
  42. position: absolute;
  43. left: 320px;
  44. top: 0;
  45. width: 560px;
  46. height: 500px;
  47. background-color: rosybrown;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <header>页眉</header>
  53. <div class="container">
  54. <aside>内容1</aside>
  55. <main>内容</main>
  56. <aside>内容2</aside>
  57. </div>
  58. <footer>页脚</footer>
  59. </body>
  60. </html>
批改老师:天蓬老师天蓬老师

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学