今天着重于学习了div+css布局相关的知识: 1.css定位:相对定位(让元素相对于自己原来的位置,进行位置调整),固定定位(页面滚动,位置不变),绝对定位. position:relative; left: 600px; //left为居左600px top: 50px; //top为居顶50p ...
分类:
其他好文 时间:
2020-02-01 21:02:01
阅读次数:
68
application.yml pom.xml ...
分类:
编程语言 时间:
2020-01-30 19:23:36
阅读次数:
67
在我们的日常开发中,时常会遇到要求兼容 ie低版本 的项目,其中表单多的项目,其中 用到 placeholder 属性几乎是必不可少的。 placeholder是一个很实用的Html 5属性。但是该属性在低版本的IE下是无效的。 于是在网上找了很多方法,就以下方法,比较简单方便。 首先新建一个js文 ...
分类:
其他好文 时间:
2020-01-26 17:31:26
阅读次数:
79
下面是工程目录 login.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset=" ...
分类:
其他好文 时间:
2020-01-25 22:03:23
阅读次数:
93
506 相对名次 给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”("Gold Medal", "Silver Medal", "Bronze Medal")。 (注:分数越高的选手,排名越靠前。) 示例 1: 提示: ...
分类:
其他好文 时间:
2020-01-23 16:46:05
阅读次数:
89
适用于多个活动场景 1.HTML <body> <div class="old-driver"> <div class="box-false"> <div class="box"> <img class="car" src="car.png"> <img class="gas" src="gas.p ...
分类:
其他好文 时间:
2020-01-20 20:41:47
阅读次数:
102
函数传递参数 参数=JS的数据类型=>数字、字符串、布尔、函数、对象、未定义 传递有名字的函数,直接传递函数名就可以了。 fn1(100, ‘px‘); function fn1(a, b){ // alert( a+b ); // 此时参数是数字和字符串 } fn2(‘miaov‘); fn2(‘ ...
分类:
其他好文 时间:
2020-01-20 14:28:39
阅读次数:
85
巧用border 在移动端 经常出现border,细边框但有的时候 产品大大1px甚至乎会觉得不够细那么要如何写出比1px还要小的border下面是代码 希望对大家有所帮助 .thinner-border { position: relative; width: 1px; margin:14px 0 ...
分类:
移动开发 时间:
2020-01-20 10:03:27
阅读次数:
128
https://golang.org/ref/mem#tmp_6 Goroutine destruction The exit of a goroutine is not guaranteed to happen before any event in the program. For exampl ...
分类:
其他好文 时间:
2020-01-19 22:04:51
阅读次数:
66