检查元素定位到购物车,将display属性改为none, 并将下列代码粘贴到 Additional CSS中。 .site-header-cart .cart-contents { padding: 1.618em 0; display: none; position: relative; back ...
分类:
其他好文 时间:
2021-03-09 13:40:12
阅读次数:
0
1. Grid: by default showing content in Y axis (column), Flex: by default showing content in X axis. Exp: If you want to style a header.. you can use f ...
分类:
Web程序 时间:
2021-03-09 13:32:34
阅读次数:
0
数据库基础知识 1.数据库存储结构 1.1 表是数据库的基本组成单元,所有的数据都以表格的形式组织,目的是可读性强。 1.2 表包括 行和列 1.2.1 行 :被称为数据/记录(data)1.2.2 列 :被称为字段(column) 1.3 每个字段都有 名字 数据类型 相关的约束 等属性。 1.4 ...
分类:
数据库 时间:
2021-03-08 14:13:53
阅读次数:
0
图片来源于:极客时间《数据结构与算法之美》 https://time.geekbang.org/column/intro/126 1. 数组 数组是最简单的数据结构,它的结构特点是:需要连续的内存空间,能够通过数组下标快速的访问数组内的元素,但是初始时需要指定大小,并且不能动态扩容,当容量不够时,需 ...
分类:
编程语言 时间:
2021-03-08 14:07:35
阅读次数:
0
配置文件 mapred-site.xml 加入以下代码 <!-- 历史服务器端地址 --> <property> <name>mapreduce.jobhistory.address</name> <value>hadoop102:10020</value> </property> <!-- 历史服 ...
分类:
其他好文 时间:
2021-03-06 14:37:58
阅读次数:
0
from django.contrib import admin# Register your models here.#注册模型# admin.site.register(模型类)from book.models import BookInfo, PeopleInfoadmin.site.regi ...
分类:
其他好文 时间:
2021-03-05 13:18:58
阅读次数:
0
File upload XSS Description This script is possibly vulnerable to XSS (Cross-site scripting). The web application allows file upload and Acunetix was ...
分类:
其他好文 时间:
2021-03-04 13:34:27
阅读次数:
0
Jekins与sonarqube集成 1.sonarqube质量管理 http://www.idevops.site/jenkins/pipelineintegrated/chapter04/ https://www.codenong.com/cs87706871/ 2.实现多分支管理 https: ...
分类:
其他好文 时间:
2021-03-04 13:26:30
阅读次数:
0
环境: vmware centos7 1、下载适合自己的es版本 https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-10-1 2、由于我下载的是二进制包,因为从es7开始自带了jdk,所以不需要单独去安装jdk了,直接 ...
分类:
其他好文 时间:
2021-03-04 13:21:00
阅读次数:
0
1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:
数据库 时间:
2021-03-03 12:17:55
阅读次数:
0