HTML小知识点
程序员文章站
2024-01-30 15:06:05
...
清除浮动 clearfix
<div class="poll clearfix">去掉浏览器自带的校验: form里加 novalidate
<form novalidate action="/reg/" method="post"form表单提交文件的时候,必须指定提交数据的编码 enctype
<form action="/upload/" method="post" enctype="multipart/form-data">for循环内部没有值时:
{% for user in user_list %}
...
{% empty %}
... # 没有值时,执行这里的内容
{% endfor %}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
上一篇: 关于类的疑惑,该怎么处理
下一篇: 传参过不去!解决方法