Blogger Information
Blog 18
fans 1
comment 0
visits 16228
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
网页元素定位属性
空瓶子
Original
1483 people have browsed it

网页元素定位属性

作业内容:1. 简述定位的类型与应用场景和使用条件 ; 2. 模仿课堂案例,实现一个模态框

  1. 浮动 float
    1.1 浮动 float
    float 属性表示浮动属性,他用来改变元素块显示方式
    float 定位只能在水平方向上定位,而不能在垂直方向上定位
    浮动元素脱离了文档流,后面的元素会上移填充它原来的空间
    浮动元素不会影响到它前面的元素的布局,只会影响到后面的元素的排列
    任何元素(包括行内元素)浮动后,都具备了块级元素的特征

    • 语法格式
      float:none|left|right
    • 部分 csss 测试代码
    1. .box img {
    2. width: 15em;
    3. border-radius: 0.5em;
    4. /* 设置图片向左浮动*/
    5. float: left;
    6. margin-right: 2em;
    7. }

    效果演示


    父元素计算高度的时候,会忽略内部的浮动元素(父级高度的塌陷)
    1.2 消除浮动影响
    消除因为浮动导致页面元素内容溢出的方法有三个

    1.通过添加一个空元素来消除浮动的影响

    2.通过附加一个伪类来消除浮动的影响

    3.通过 overflow 属性,创建 BFC 布局解决父元素的高度塌陷问题
    方式一和二的测试代码

    1. /* 方法一:通过附加一个空的元素去消除浮动的影响 */
    2. /* .clear {
    3. clear: both;
    4. } */
    5. /* 方法二:通过伪类来方式来消除浮动的影响 */
    6. .box:after {
    7. content: "";
    8. display: block;
    9. clear: both;
    10. }
    11. </style>
    12. </head>
    13. <body>
    14. <div class="box">
    15. <img
    16. src="https://img.php.cn/upload/course/000/000/001/5fbf4df4c07ca886.jpg"
    17. alt=""
    18. />
    19. <div>
    20. <h2>Mac PHP开发工具与环境搭建</h2>
    21. <p>
    22. 码农界有一句至理名言:"第一个程序员,都应该拥有一台MacBook", 这是真的吗?
    23. 苹果电脑,始于颜值,终于体验,
    24. 毕竟苹果电脑也传统的Windows电脑的使用是完全不同的体验,
    25. 这套教程就是为那些喜欢MacBook电脑,但又担心用不好的新人小白用户,
    26. </p>
    27. <a href="">了解详情</a>
    28. </div>
    29. <!-- <div class="clear"></div> -->
    30. </div>

    效果演示

    这两种方法的基本原理是都是通过创建一个空的元素来消除浮动的影响

    通过创建 BFC: 解决父元素的高度塌陷问题
    代码:

    1. .box {
    2. border: 1px solid black;
    3. padding: 1em;
    4. background-color: skyblue;
    5. overflow: hidden;
    6. }
    7. .box img {
    8. width: 15em;
    9. border-radius: 0.5em;
    10. float: left;
    11. margin-right: 2em;
    12. }
    13. .box div {
    14. overflow: hidden;
    15. }
    16. .box div a {
    17. width: 10em;
    18. height: 2em;
    19. color: blue;
    20. background-color: red;
    21. float: left;
    22. }

    演示效果

  2. 关于定位的类型

    定位属性:position
    定位类型: 静态定位 static, 相对定位 relative,绝对定位 absolute,固定定位: fixed

    1.静态定位: position: static 默认,也就是文档流定位,元素的显示位置与源码顺序一致;

    2.相对定位:
    语法:position: relative
    对一个元素进行相对定位,是对这个元素设置垂直或者水平位置,让这个元素相对于起点位置进行移动

    3.绝对定位:
    语法:position: absolue;

    相对于它的祖先中离它最近的”定位元素”的位置发生偏移
    如果祖先元素中不存在定位元素,它就参考根元素(html)进行定位
    定位元素: 只要这个元素中有 position: relative;或者 position:absolute;就称为定位元素
    position: static;这个不是定位元素
    而且只有定位元素才有资格充当绝对定位元素的定位祖先元素(定位参考元素,定位父级)

    4.固定定位:
    语法:position: fixed

    是绝对定位的一个特例,它始终相对于 html 定位
    css 代码

  1. /* 相对定位:*/
  2. .box h2 {
  3. position: relative;
  4. top: 1em;
  5. left: 1em;
  6. }
  7. /* 绝对定位 */
  8. .box h2 {
  9. position: absolute;
  10. top: 5em;
  11. left: 5em;
  12. }
  13. /* 固定定位 */
  14. html {
  15. min-height: 100em;
  16. }
  17. .box h2 {
  18. position: fixed;
  19. top: 10em;
  20. left: 10em;
  21. }

效果演示

相对定位

绝对定位

固定定位

  1. 固定定位实现:模态框
    html 代码
  1. <body>
  2. <header>
  3. <h2>我的博客</h2>
  4. <button>登录</button>
  5. </header>
  6. <!-- 静态框 -->
  7. <div class="modal box_login">
  8. <!-- 蒙版 -->
  9. <div class="mengban"></div>
  10. <!-- 主体 -->
  11. <button class="close">关闭</button>
  12. <form action="" method="POST">
  13. <table>
  14. <caption>
  15. 用户登录
  16. </caption>
  17. <tr>
  18. <td><label for="">邮箱:</label></td>
  19. <td><input type="email" name="email" /></td>
  20. </tr>
  21. <tr>
  22. <td><label for="">密码:</label></td>
  23. <td><input type="possword" name="possword" /></td>
  24. </tr>
  25. <tr>
  26. <td></td>
  27. <td><button class="login_btn">登录</button></td>
  28. </tr>
  29. </table>
  30. </form>
  31. </div>
  32. <script src="modal.js"></script>
  33. </body>

css 代码

  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. /* 页眉 */
  7. header {
  8. background-color: #cccccc;
  9. padding: 0.5em 2em;
  10. overflow: hidden;
  11. }
  12. header h2 {
  13. float: left;
  14. }
  15. header button {
  16. float: right;
  17. width: 10em;
  18. height: 2.5em;
  19. }
  20. header button:hover {
  21. cursor: pointer;
  22. }
  23. /* 蒙版 */
  24. .mengban {
  25. /* background-color: rgb(0, 0, 0, 0.5); */
  26. position: fixed;
  27. top: 0;
  28. right: 0;
  29. bottom: 0;
  30. left: 0;
  31. }
  32. /* 登录框 */
  33. .box_login {
  34. border: 1px solid black;
  35. max-width: 40em;
  36. background-color: skyblue;
  37. padding: 2em;
  38. overflow: hidden;
  39. /* 固定定位 */
  40. position: fixed;
  41. top: 10em;
  42. left: 30em;
  43. right: 30em;
  44. }
  45. .box_login .close {
  46. float: right;
  47. }
  48. .box_login form table {
  49. width: 80%;
  50. }
  51. .box_login form table caption {
  52. font-size: larger;
  53. margin-bottom: 2em;
  54. }
  55. .box_login form table td {
  56. padding: 0.5em;
  57. }
  58. .box_login form table input {
  59. width: 20em;
  60. height: 2em;
  61. }
  62. .login_btn {
  63. width: 20em;
  64. height: 2.5em;
  65. }
  66. .close {
  67. position: absolute;
  68. width: 4em;
  69. height: 2em;
  70. top: 1em;
  71. right: 1em;
  72. }
  73. .close:hover {
  74. cursor: pointer;
  75. background-color: red;
  76. color: white;
  77. }
  78. /* 页面初始化时,模态框应该隐藏 */
  79. .box_login {
  80. display: none;
  81. }

效果演示

  1. 使用绝对定位画出五环
    主要 css 代码
  1. body div:nth-of-type(1) {
  2. width: 10em;
  3. height: 10em;
  4. border: 6px solid blue;
  5. border-radius: 50%;
  6. position: absolute;
  7. top: 10em;
  8. left: 10em;
  9. }

效果演示

  1. 使用相对点位画出十字架
    主要 css 代码
  1. div:nth-of-type(1) {
  2. border: 2px solid red;
  3. width: 10em;
  4. position: relative;
  5. top: 20em;
  6. left: 20em;
  7. }
  8. div:nth-of-type(2) {
  9. border: 2px solid red;
  10. height: 10em;
  11. width: 0;
  12. position: relative;
  13. top: 15em;
  14. left: 25em;
  15. }

效果演示

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:markdown中的列表语法不对
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