- 博客(3)
- 收藏
- 关注
原创 CSS实现水平垂直居中对齐的八种方法
大家来一起看看html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div style="width:300px;height:300px;" class="wrap"> <div style="width:100
2021-06-28 18:44:18
347
原创 MySql数据库设置主键
在创建表时添加主键 设置主键的关键字primary key 第一种 create table tests( tid int(11) not null auto_increment, //not null是设置该字段不能为null;auto_increment设置该字段自增长 tname varchar(255) default null, //default设置该字段的默认值 primary key(tid) ) 第二种 create table users( uid int(11)
2020-12-28 21:48:22
5108
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人