A表id aname 1 张三2 李四 B表id score aid bname year1 89 1 语文 20202 91 1 数学 2019 select aname,bname,score from A left join B on A.id=B.aid where year='2015' ...
分类:
数据库 时间:
2020-09-17 20:35:28
阅读次数:
90
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>test</title> <style> div.items { float: left; width: 100px; height: 100px; background-colo ...
分类:
其他好文 时间:
2020-09-17 19:31:30
阅读次数:
27
HTML每个元素都可以看做一个盒子, 盒子包括 content,padding,border,margin 方向 :top, right, bottom, left 内容相关属性: width:宽度 min-width :最小宽度,浏览器窗口小于最小宽度是,可以滚动查看 max-width : 最大 ...
分类:
其他好文 时间:
2020-09-17 18:15:29
阅读次数:
65
<!DOCTYPE html><html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title></title> <style> .left div, .right div { wid ...
分类:
其他好文 时间:
2020-09-17 17:59:12
阅读次数:
29
定位分为:静态定位、相对定位、绝对定位、固定定位 1、静态定位(static) 一般的标签元素不加任何定位属性都属于静态定位,在页面的最底层,属于标准流。 2、绝对定位(absolute) 绝对定位元素从文档流脱出,使用left、right、top、bottom等属性相对于其最接近的一个最有定位设置 ...
分类:
Web程序 时间:
2020-09-17 16:40:25
阅读次数:
46
css页面美化 为什么使用css: 有效的传递页面消息 使用CSS美化过的页面文本,页面漂亮,美观,吸引用户 可以很好的突出页面的主题内容,使用户第一眼可以看到页面的主要内容 具有良好的用户体验 文字美化 文本样式 文本与图片的垂直对齐 vertical-align:middle(垂直对齐)、top ...
分类:
Web程序 时间:
2020-09-17 12:24:15
阅读次数:
51
发送按钮悬停效果 效果图 HTML <div id="send-btn"> <button> // 这里是一个svg的占位 Send </button> </div> CSS #send-btn{ display: flex; align-items: center; justify-content ...
分类:
Web程序 时间:
2020-09-17 11:59:12
阅读次数:
50
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), r ...
分类:
其他好文 时间:
2020-09-16 12:19:36
阅读次数:
29
今天在写二分查找,计算中间值的时候是这样写的: long mid = left + (right - left) >> 1; 然后提交一直都是超时,脑改了很多地方都不行,只能debug,发现循环死在left=16,right=30时,由于循环一直是进入left=mid+1中,然而mid根本没有变,所 ...
分类:
其他好文 时间:
2020-09-09 19:21:19
阅读次数:
59
题目 题目来源:CCF 山东省选 2008; 在线评测:Luogu#1984。 题目描述 把总质量为 $1\ \textrm$ 的水分装在 \(n\) 个杯子里,每杯水的质量均为 \(\left(\dfrac{1}{n}\right)\ \textrm{kg}\),初始温度均为 $0; ^\circ ...
分类:
其他好文 时间:
2020-09-09 18:54:43
阅读次数:
40