摘要:
Django中原始的上传文件按钮太丑,于是美化一下。 代码:CSS .upload-btn-wrapper { position: relative; display: inline-block; } .btn { border: 2px solid #454cad; color: #454cad; 阅读全文
2020年11月23日
2020年11月20日
摘要:
JS语言 <script type="text/javascript"> function display(id){ var traget=document.getElementById(id); if(traget.style.display=="none"){ traget.style.disp 阅读全文
2020年11月19日
摘要:
html layui高度自适应layer.open({ type: 2, title: false, closeBtn: 0, shadeClose: true, area: ['675px','auto'], //宽高 content: ["./goodsDetail.html",'yes'], 阅读全文
2020年11月18日
摘要:
<table class="table table-striped"> <tr class="warning"> <td>序号</td> {% for column in show_columns %} <td>{{column}}</td> {% endfor %} </tr> {% for in 阅读全文
2020年11月12日
摘要:
针对不同cookie缓存不同url 用vary_on_headers 缺省情况下,Django 的缓存系统使用所请求的路径(如blog/article/1)来创建其缓存键。这意味着不同用户请求同样路径都会得到同样的缓存版本, 不考虑客户端user-agent, cookie和语言配置的不同, 除非你 阅读全文
2020年11月11日
摘要:
css使a标签内文本垂直居中 a标签属于行内元素,默认情况下是不支持设置宽高的,仅依靠内容来“撑大自己”。这时我们需要用css的display属性并且值设置为block即可。这么设置浏览器就会将被设置的a标签识别为块元素。这时宽高的设置参数就有效了。 a标签的文字垂直居中很简单,只需要设置css的l 阅读全文
摘要:
在img标签里面只设置宽,不设置高,图片就会等比例缩放。 #logo { height:100%; } <div class="branding"> <img src="/static/image/logo.png" alt="" id="logo"> </div> 阅读全文
摘要:
将鼠标移动到div上,显示提示信息(div),并且鼠标移动,显示的div随着鼠标的移动而移动,移出div,显示消失(div)。 {% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> 阅读全文
2020年11月10日
摘要:
{% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>covid-19_US_status</title> <link rel="stylesheet" href=" 阅读全文
2020年11月7日
摘要:
(.*?):(.*) '$1':'$2', 阅读全文