码迷,mamicode.com
首页 >  
搜索关键字:css div    ( 164063个结果
chrom直接检查定位是否写正确
1.打开F12,切换到console 2.xpath定位,输入:$x("your_xpath_str") 3.css定位,输入:$$("your_css_str") 4.id,document.getElementById("xx") 5.class,document.getElementByCla ...
分类:其他好文   时间:2021-06-02 14:23:20    阅读次数:0
去掉谷歌浏览器input默认填充时的黄色背景
/*去掉input默认填充黄色背景*/ input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px transparent inset ...
分类:其他好文   时间:2021-06-02 14:21:55    阅读次数:0
linux shell判断输入的是哪个不可见字符,例如^X(Ctrl-X)
最近有一个需求,shell终端输入^X切换到另一个登陆界面。 如何判断输入的是^加上其他字母成为要解决的问题。 查了一堆资料,发现可以这样判断: #!/bin/sh echo Please input ^X: read a echo $a if [ $a = $'\030' ];then echo ...
分类:系统相关   时间:2021-06-02 14:05:04    阅读次数:0
ubuntu卸载CUDA10.1和cudnn
卸载cudnn sudo rm -rf /usr/local/cuda/include/cudnn.h sudo rm -rf /usr/local/cuda/lib64/libcudnn* 卸载cuda 第一步 sudo /usr/local/cuda-10.1/bin/cuda-uninstal ...
分类:系统相关   时间:2021-06-02 13:55:10    阅读次数:0
npm install 报错 cb.apply is not a function
win + r 打开运行,输入%appdata% 删除npm和npm-cache文件夹 执行npm cache clean --force命令 此时应该就可以了,如果还不行,就执行卸载Node.js重新安装。 如果还是不行!! 换yarn 安装yarn npm install -g yarn yar ...
分类:移动开发   时间:2021-06-02 13:47:57    阅读次数:0
centos8 下启动rocketmq
Start Name Server > nohup sh bin/mqnamesrv & > tail -f ~/logs/rocketmqlogs/namesrv.log The Name Server boot success... 1、先启动NameServer: 在bin下执行: nohup ...
分类:其他好文   时间:2021-06-02 13:47:34    阅读次数:0
CSS问题流水
用于记录一些个人开发过程中遇到的或者查询的CSS问题,做一个汇总记录。 ...
分类:Web程序   时间:2021-06-02 13:45:15    阅读次数:0
python numpy扩展维度以及复制
1. 扩展维度 要将一个二维的数据扩展为三维: 1 print("扩展之前:", img_Y_blur.shape) 2 img_Y_blur = np.expand_dims(img_Y_blur, 2) 3 print("扩展之后:", img_Y_blur.shape) 运行结果: 扩展之前: ...
分类:编程语言   时间:2021-06-02 13:39:07    阅读次数:0
[react-router] hashHistory 和 browserHistory 的区别
更多 react-router提供了三种方式来实现路由,并没有默认的路由,需要在声明路由的时候,显式指定所使用的路由。 //v1.x <Router/> //v2.0.0 // hash history import { hashHistory } from 'react-router' <Rout ...
分类:其他好文   时间:2021-06-02 13:31:44    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:29:18    阅读次数:0
164063条   上一页 1 ... 39 40 41 42 43 ... 16407 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!