摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <title>绝对定位</title></head><style type="text/css"> .con{ width: 400px; height: 400px; bord 阅读全文
posted @ 2019-12-04 22:26 李俊鹏Python 阅读(116) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <title>相对定位</title></head><style type="text/css"> .con{ width: 400px; height: 400px; bord 阅读全文
posted @ 2019-12-04 22:17 李俊鹏Python 阅读(598) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <title>清除浮动</title></head><style type="text/css"> .con,.con2{ width: 300px; border:1px so 阅读全文
posted @ 2019-12-04 22:01 李俊鹏Python 阅读(113) 评论(0) 推荐(0) 编辑
摘要: css文本设置 常用的应用文本的css样式: color 设置文字的颜色,如: color:red; font-size 设置文字的大小,如:font-size:12px; font-family 设置文字的字体,如:font-family:'微软雅黑'; font-style 设置字体是否倾斜,如 阅读全文
posted @ 2019-11-12 23:34 李俊鹏Python 阅读(124) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="zh-CN"><head> <meta charset="utf-8"> <title>我的第一個網頁</title></head> <!-- 1.標籤建議全部小寫 --><body> 歡迎訪問我的網頁! <!-- 屬性用引號引起來 --> <d 阅读全文
posted @ 2019-11-10 10:40 李俊鹏Python 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 完整的select语句 select distinct * from 表名 where ... group bu ... having ... #集合分组 order bu ... limit star,count 执行顺序为: from 表名 where... group by ... selec 阅读全文
posted @ 2019-10-11 23:30 李俊鹏Python 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 数据库的命令: 查看所有数据库:show databases; 查看当前使用的数据库:select databases(); 切换数据库:use 数据库名; 创建数据库:create database 数据库名 charser=utf8; 删除数据库:drop databases 数据库名; 数据库 阅读全文
posted @ 2019-10-09 23:19 李俊鹏Python 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 创建数据库:create database 数据库名 charset=utf8; 创建表:create table 表名(字段 类型 约束); id int auto_increment primary key not null, 插入数据:insert into 表名(...) values(.. 阅读全文
posted @ 2019-10-06 17:37 李俊鹏Python 阅读(184) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8 class Node(object): """""" def __init__(self, item): self.elem = item self.lchild = None self.rchild = None class Tree(object): """二叉樹" 阅读全文
posted @ 2019-09-28 21:48 李俊鹏Python 阅读(562) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8 class Node(object): """""" def __init__(self, item): self.elem = item self,lchild = None self.rchild = None class Tree(object): """二叉樹" 阅读全文
posted @ 2019-09-26 23:23 李俊鹏Python 阅读(168) 评论(0) 推荐(0) 编辑