taiji

mariadb(mysql)[详解]

痴心易碎 提交于 2021-01-09 12:40:20
本文链接: https://blog.csdn.net/root__oo7/article/details/82817501 安装: [root@bogon ~]# yum install mariadb -y #客户端 [root@bogon ~]# yum install mariadb-server -y #服务端 启动服务: [root@bogon ~]# systemctl start mariadb [root@bogon ~]# ss -tnl | grep 3306 #查看端口确定是否被监听 LISTEN 0 50 *:3306 *:* 说明:若是mysql启动 将mariadb改为mysql即可 进入mariadb: [root@bogon ~]# mysql #注意 Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2 Server version: 5.5.56-MariaDB MariaDB Server Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to

前端Tips#3

房东的猫 提交于 2020-01-09 11:35:51
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 本文同步自 JSCON简时空 - 技术博客,点击阅读 视频讲解 视频地址 文字讲解 1、先讲结论 border-radius 这个 css 属性大家应该使用得非常娴熟,现实中用到的场景基本都是四个圆角一致的情况。 比如实现一个圆形按钮,其中 border-radius 数值有些人写为 50% ,有些人则写成 100% ,不过你会发现两者效果是一样的: 测试 HTML 代码如下: <style> .circle-btn { color: white; width: 100px; height: 100px; text-align: center; line-height: 100px; } </style> <div class="circle-btn" style=" background: #8BC34A; border-radius: 100%; ">50%</div> <div class="circle-btn" style=" background: #E91E63; border-radius: 100%; ">100%</div> 其实不论是 50% 还是 100% ,只要将 border-radius 设置成 x% ,且 x >= 50 都能获得和 50% 一样的效果。 如果不知道其中的原因

太极图

爱⌒轻易说出口 提交于 2019-12-01 19:44:57
<div class="taiji"></div> .taiji { width: 140px; height: 280px; border-radius: 100%; /* background-color: red; */ border: 2px solid black; border-left: 140px solid black; position: relative; } .taiji::before { content: ""; position: absolute; right: 50%; top: 0; width: 40px; height: 40px; border-radius: 100%; background: black; border: 50px solid #ffffff; } .taiji::after { content: ""; position: absolute; right: 50%; bottom: 0; width: 40px; height: 40px; border-radius: 100%; background: #fff; border: 50px solid black; } 1. .taiji { width: 140px; height: 280px; border-radius: 100%; /*