摘要: 背景1 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .box1 { width: 500px; height: 500px; margin: 0 auto; 阅读全文
posted @ 2020-07-17 21:42 我等着你 阅读(177) 评论(0) 推荐(0)
摘要: 相对定位 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .box1 { width: 200px; height: 200px; background-colo 阅读全文
posted @ 2020-07-16 09:56 我等着你 阅读(170) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>导航条</title> <style type="text/css"> /*清除默认样式*/ * { margin: 0; padding: 0; } body { font: 1 阅读全文
posted @ 2020-07-15 14:17 我等着你 阅读(220) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>导航条</title> <style type="text/css"> /* 清除默认样式 */ * { margin: 0; padding: 0; } /*设置ul*/ .na 阅读全文
posted @ 2020-07-14 11:28 我等着你 阅读(232) 评论(0) 推荐(0)
摘要: 简单布局 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } .header { /*设置一个宽度*/ wi 阅读全文
posted @ 2020-07-14 09:05 我等着你 阅读(143) 评论(0) 推荐(0)
摘要: CSS处理网页时,它认为每个元素都包含在一个不可见的盒子里。如果把所有的元素都想象成盒子,那么我们对网页的布局就相当于是摆放盒子。只需要将相应的盒子摆放到网页中相应的位置即可完成网页的布局。 边框 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" 阅读全文
posted @ 2020-07-13 09:32 我等着你 阅读(524) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <time.h> #include <windows.h> #define high 25 //画布高 #define width 60 //画布宽 #define 阅读全文
posted @ 2020-05-28 08:29 我等着你 阅读(2081) 评论(0) 推荐(2)
摘要: 你最近过的还好吗 我故事里的那个她海南的冬天没有雪 但不影响他在开着花自从你走后 我回到了那个没有你的家就是在这个地方 我说我要娶了她你是我这一辈子 最最难忘的关卡我抱着吉他 被暴雨淋伤到你家楼下 四处游荡做了一个只会歌唱的傻瓜你才不是一个没人要的女同学 #include <iostream> #i 阅读全文
posted @ 2020-05-25 14:37 我等着你 阅读(192) 评论(0) 推荐(0)
摘要: COORD(坐标结构体) typedef struct _COORD { SHORT X; SHORT Y; } COORD; CONSOLE_SCREEN_BUFFER_ INFO(控制台窗口信息结构体) typedef struct _CONSOLE_SCREEN_BUFFER_INFO { C 阅读全文
posted @ 2020-05-25 14:24 我等着你 阅读(563) 评论(0) 推荐(0)
摘要: /* 虚拟键代码 值 键名称 VK_BACK 0x08 退格键 VK_TAB 0x09 Tab键 VK_RETURN 0x0D 回车键 VK_SHIFT 0x10 Shift键 VK_LSHIFT 0xA0 左Shift键 VK_RSHIFT 0xA1 右Shift键 VK_CONTROL 0x11 阅读全文
posted @ 2020-05-24 09:38 我等着你 阅读(1039) 评论(0) 推荐(0)