欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML小知识点

程序员文章站 2024-01-30 15:06:05
...
  1. 清除浮动 clearfix
    <div class="poll clearfix">

  2. 去掉浏览器自带的校验: form里加 novalidate
    <form novalidate action="/reg/" method="post"

  3. form表单提交文件的时候,必须指定提交数据的编码 enctype
    <form action="/upload/" method="post" enctype="multipart/form-data">

  4. for循环内部没有值时:
    {% for user in user_list %}
    ...
    {% empty %}
    ... # 没有值时,执行这里的内容
    {% endfor %}

  5. with缩写长的变量名
    {% with jc=name_list.1.1 %}
    { jc }
    {% endwith %}
    6.固定组件

.header{
    position: fixed;  //固定位置,不随滑动条滑动
    // 如果内容较多 超出一版,加overflow
    overflow: auto;
    top: 60px; // 距离上边界60像素
    bottom: 0px;  //距离下边界0像素
    width: 200px;    //宽度 200像素

}
<div class='header'></div>

转载于:https://www.jianshu.com/p/2c50054d9c2c